rt_gccstream/gcc/testsuite/gfortran.dg/continuation_8.f90

10 lines
208 B
Fortran

! { dg-do run }
! PR31495 Is this continuation legal?
program print_ascertain
character (len=50) :: str
str = "hello world &
& &
&!"
if (str.ne."hello world !") call abort
end program print_ascertain