./:
[official-gcc.git] / gcc / testsuite / gfortran.dg / comma_format_extension_3.f
blob776254e29df7307bd4ec54161d380f423541518c
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') call abort
12 write (c,100) 0
13 if (c .ne. 'i = 0 ') call abort
15 100 format ('i = 'i1,:,', j = ',i1)
16 end