blob: 0d1570bf304789ebf200fa94622875f11ab60c47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
! { dg-do run { target fd_truncate } }
! { dg-options "-fbackslash" }
! PR36538 namelist failure with tabs preceding object name
program check1
integer x
namelist/casein/x
open(1, status="scratch")
write(1,'(a)') "&CASEIN"
write(1,'(a)') "\t\tx = 1"
write(1,'(a)') "/"
rewind(1)
x = 0
read(1,casein)
if (x.ne.1) call abort
end
|