2 ! { dg-options "-fbackslash" }
3 ! PR36546 Namelist error with tab following a comma and newline
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,"
17 if ((a
.ne
.1.0) .or
. (b
.ne
.2.0) .or
. (c
.ne
.3.0)) STOP 1