2 ! PR40853 Error in namelist IO.
3 ! Test case derived from example given in PR. < jvdelisle@gcc.gnu.org >
9 type tao_plot_page_struct
11 type (tao_title_struct
) title
! Comment this line out and the bug goes away.
14 type (tao_plot_page_struct
) plot_page
15 namelist / params
/ plot_page
16 open (10, status
="scratch")
17 write(10,'(a)')" ¶ms"
18 write(10,'(a)')" plot_page%size=5 , 2,"
21 read (10, nml
= params
)
22 if (any(plot_page
%size
.ne
. (/ 5, 2 /))) call abort