aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/namelist_51.f90
blob: 9663bd68d9fc3b98b27bef273e0fee7b42c399b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
! { dg-do run }
! PR36676 Namelist comment problems
! test case from PR, reduced by Jerry DeLisle  <jvdelisle@gcc.gnu.org>
program mem_nml
    implicit none
    integer, save :: nxc
    nxc = 0
    call readNamelist()
contains
subroutine readNamelist()
implicit none
namelist /INPUT/    nxc
open(unit = 101, status="scratch")
write(101,'(a)')"&INPUT"
write(101,'(a)')""
write(101,'(a)')"!"
write(101,'(a)')"!"
write(101,'(a)')"!"
write(101,'(a)')"nxc = 100"
write(101,'(a)')"&END"
rewind(101)
read(unit = 101, nml = INPUT)
if (nxc /= 100) call abort
close(unit = 101)
endsubroutine
end program mem_nml