summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/namelist_88.f90
blob: 0a6ac9b3bb3344a19c48e40373a2eaf56de0aeb0 (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
28
29
! { dg-do run }
! PR69668 Error reading namelist opened with DELIM='NONE' 
program namelist
  implicit none

  integer,parameter :: tabsz=10
  integer :: i
  character(len=10),dimension(tabsz) :: tab
  namelist/tab_nml/tab

  tab(:)='invalid'

  ! Create a temporary test namelist file
  open(unit=23,status='scratch',delim='none')
  write(23,*) "&tab_nml"
  write(23,*) "tab(1)='in1',"
  write(23,*) "tab(2)='in2'"
  write(23,*) "/"
  rewind(23)

  read(unit=23,nml=tab_nml)

  close(unit=23)

  if (tab(1).ne.'in1') call abort
  if (tab(2).ne.'in2') call abort
  if (any(tab(3:tabsz).ne.'invalid')) call abort

end program namelist