PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / comma_format_extension_3.f
blob0b002249b4697b23a598c869069b90d753d0ed68
1 ! PR libfortran/15332 and PR fortran/13257
2 ! We used to accept this as an extension but
3 ! did do the correct thing at runtime.
4 ! Note the missing , before i1 in the format.
5 ! { dg-do run }
6 ! { dg-options "" }
7 character*12 c
9 write (c,100) 0, 1
10 if (c .ne. 'i = 0, j = 1') STOP 1
12 write (c,100) 0
13 if (c .ne. 'i = 0 ') STOP 2
15 100 format ('i = 'i1,:,', j = ',i1)
16 end