Retro68/gcc/gcc/testsuite/gfortran.dg/continuation_8.f90
2018-12-28 16:30:48 +01:00

10 lines
204 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 !") STOP 1
end program print_ascertain