mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-23 19:19:48 +08:00
re PR libfortran/37707 (Namelist read of array of derived type incorrect)
2008-10-08 Jerry DeLisle <jvdelisle@gcc.gnu.org PR libfortran/37707 * gfortran.dg/namelist_54.f90: New test. From-SVN: r140997
This commit is contained in:
parent
af43ff01e1
commit
cdb148c194
@ -1,3 +1,8 @@
|
||||
2008-10-08 Jerry DeLisle <jvdelisle@gcc.gnu.org
|
||||
|
||||
PR libfortran/37707
|
||||
* gfortran.dg/namelist_54.f90: New test.
|
||||
|
||||
2008-10-08 Uros Bizjak <ubizjak@gmail.com>
|
||||
|
||||
* gcc.dg/vect/ggc-pr37574.c: Cleanup "vect" tree dump.
|
||||
|
14
gcc/testsuite/gfortran.dg/namelist_54.f90
Normal file
14
gcc/testsuite/gfortran.dg/namelist_54.f90
Normal file
@ -0,0 +1,14 @@
|
||||
! { dg-do run }
|
||||
! PR37707 Namelist read of array of derived type incorrect.
|
||||
type s
|
||||
integer m
|
||||
integer n
|
||||
end type s
|
||||
type(s) :: a(3)
|
||||
character*80 :: l = ' &namlis a%m=1,2, a%n=5,6, /'
|
||||
namelist /namlis/ a
|
||||
a%m=[87,88,89]
|
||||
a%n=[97,98,99]
|
||||
read(l,namlis)
|
||||
if (a(1)%m /= 1 .or. a(2)%m /= 2 .or. a(1)%n /= 5 .or. a(2)%n /= 6) call abort
|
||||
end
|
Loading…
Reference in New Issue
Block a user