view gcc/testsuite/gfortran.dg/comma_format_extension_3.f @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +0900
parents 84e7813d76e9
children
line wrap: on
line source

! PR libfortran/15332 and PR fortran/13257
! We used to accept this as an extension but
! did do the correct thing at runtime.
! Note the missing , before i1 in the format.
! { dg-do run }
! { dg-options "" }
      character*12 c

      write (c,100) 0, 1
      if (c .ne. 'i = 0, j = 1') STOP 1
      
      write (c,100) 0
      if (c .ne. 'i = 0       ') STOP 2

 100  format ('i = 'i1,:,', j = ',i1)
      end