aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/namelist_45.f90
blob: 3512d08b7ccb5612e1e5e8654f4016de6f62c373 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
! { dg-do run }
! PR35617 read namelist error with '!'
program test
  character(len=128) :: mhdpath
  namelist /nbdrive_naml/ mhdpath
  open(10, file='test.nml')
  
  write(10,'(a)') "&nbdrive_naml"
  write(10,'(a)') 
  write(10,'(a)') "!nstep_stop = 2  ! uncomment to bar"
  write(10,'(a)') "!nstep_start = 2 ! uncomment to foo"
  write(10,'(a)') " mhdpath = 'mypath.dat'"
  write(10,'(a)') "/"

  rewind(10)
  read(10, nbdrive_naml)
  close(10,status="delete")
end program test