2 ! PR36676 Namelist comment problems
3 ! test case from PR, reduced by Jerry DeLisle <jvdelisle@gcc.gnu.org>
10 subroutine readNamelist()
13 open(unit
= 101, status
="scratch")
14 write(101,'(a)')"&INPUT"
19 write(101,'(a)')"nxc = 100"
20 write(101,'(a)')"&END"
22 read(unit
= 101, nml
= INPUT
)
23 if (nxc
/= 100) STOP 1