AArch64: correct constraint on Upl early clobber alternatives
[official-gcc.git] / gcc / testsuite / gfortran.dg / namelist_58.f90
blob5c032d1e80c1a59b1171d761e43fb7ac3067fa66
1 ! { dg-do run }
2 ! PR40853 Error in namelist IO.
3 ! Test case derived from example given in PR. < jvdelisle@gcc.gnu.org >
4 program test
5 implicit none
6 type tao_title_struct
7 character(2) justify
8 end type
9 type tao_plot_page_struct
10 real shape_height_max
11 type (tao_title_struct) title ! Comment this line out and the bug goes away.
12 real size(2)
13 end type
14 type (tao_plot_page_struct) plot_page
15 namelist / params / plot_page
16 open (10, status="scratch")
17 write(10,'(a)')" &params"
18 write(10,'(a)')" plot_page%size=5 , 2,"
19 write(10,'(a)')"/"
20 rewind(10)
21 read (10, nml = params)
22 if (any(plot_page%size .ne. (/ 5, 2 /))) STOP 1
23 close (10)
24 end program