aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/continuation_8.f90
blob: b465827026685ed181f9825b2d1bd7278a9129c7 (plain)
1
2
3
4
5
6
7
8
9
! { 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