mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-06 02:10:29 +08:00
re PR fortran/32903 (Default initializer and intent(OUT): default initializer not used)
2007-07-27 Tobias Burnus <burnus@net-b.de> PR fortran/32903 * gfortran.dg/initialization_11.f90: New test. From-SVN: r126975
This commit is contained in:
parent
55ed891fa1
commit
a896d54dcb
@ -1,3 +1,8 @@
|
||||
2007-07-27 Tobias Burnus <burnus@net-b.de>
|
||||
|
||||
PR fortran/32903
|
||||
* gfortran.dg/initialization_11.f90: New test.
|
||||
|
||||
2007-07-27 Richard Sandiford <richard@codesourcery.com>
|
||||
|
||||
* gcc.target/mips/ins-1.c: New test.
|
||||
|
20
gcc/testsuite/gfortran.dg/initialization_11.f90
Normal file
20
gcc/testsuite/gfortran.dg/initialization_11.f90
Normal file
@ -0,0 +1,20 @@
|
||||
! { dg-do run }
|
||||
! PR fortran/32903
|
||||
!
|
||||
program test
|
||||
implicit none
|
||||
type data_type
|
||||
integer :: i=2
|
||||
end type data_type
|
||||
type(data_type) :: d
|
||||
d%i = 4
|
||||
call set(d)
|
||||
if(d%i /= 2) then
|
||||
print *, 'Expect: 2, got: ', d%i
|
||||
call abort()
|
||||
end if
|
||||
contains
|
||||
subroutine set(x1)
|
||||
type(data_type),intent(out):: x1
|
||||
end subroutine set
|
||||
end program test
|
Loading…
x
Reference in New Issue
Block a user