OSDN Git Service

PR libfortran/20006
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / comma_format_extension_3.f
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
8
9       write (c,100) 0, 1
10       if (c .ne. 'i = 0, j = 1') call abort
11       
12       write (c,100) 0
13       if (c .ne. 'i = 0       ') call abort
14
15  100  format ('i = 'i1,:,', j = ',i1)
16       end