2 ! PR45532 gfortran namelist read error.
3 ! Derived from the original test case by David Sagan.
10 integer :: typee
= 313233
13 type (line_struct
) line
14 type (symbol_struct
) symbol
16 type (curve_struct
) curve(10)
17 namelist / params
/ curve
19 open (10, status
="scratch")
21 write(10,*) " curve(1)%symbol%typee = 1234"
24 read (10, nml
= params
)
25 if (curve(1)%symbol
%typee
/= 1234) call abort