view gcc/testsuite/gfortran.dg/hollerith_character_array_constructor.f90 @ 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

! { dg-do run }
! { dg-options "-w" }
! PR fortran/82884
! Original code contributed by Gerhard Steinmetz
program p
   character :: c(4) = [1h(, 1hi, 1h4, 1h)]
   if (c(1) /= '(') STOP 1
   if (c(2) /= 'i') STOP 2
   if (c(3) /= '4') STOP 3
   if (c(4) /= ')') STOP 4
end