annotate gcc/testsuite/gfortran.dg/continuation_8.f90 @ 132:d34655255c78

update gcc-8.2
author mir3636
date Thu, 25 Oct 2018 10:21:07 +0900
parents 84e7813d76e9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 ! { dg-do run }
kono
parents:
diff changeset
2 ! PR31495 Is this continuation legal?
kono
parents:
diff changeset
3 program print_ascertain
kono
parents:
diff changeset
4 character (len=50) :: str
kono
parents:
diff changeset
5 str = "hello world &
kono
parents:
diff changeset
6 & &
kono
parents:
diff changeset
7 &!"
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
8 if (str.ne."hello world !") STOP 1
111
kono
parents:
diff changeset
9 end program print_ascertain