nvptx, libgfortran: Switch out of "minimal" mode
[official-gcc.git] / gcc / testsuite / gfortran.dg / namelist_49.f90
blob066641990240e4f9178ef4d1f1e62530b962c455
1 ! { dg-do run }
2 ! { dg-options "-fbackslash" }
3 ! PR36546 Namelist error with tab following a comma and newline
4 program check1
5 real a,b,c
6 namelist/CASEDAT/A,B,C
7 open(1, status="scratch")
8 write(1,'(a)') "&CASEDAT"
9 write(1,'(a)') "\t\tA = 1.0,\t\tB = 2.0,"
10 write(1,'(a)') "\t\tC = 3.0,"
11 write(1,'(a)') " /"
12 rewind(1)
13 a = 0.0
14 b = 0.0
15 c = 0.0
16 read(1,casedat)
17 if ((a.ne.1.0) .or. (b.ne.2.0) .or. (c.ne.3.0)) STOP 1
18 end