annotate gcc/testsuite/gfortran.dg/continuation_12.f90 @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
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 ! PR46705 Spurious "Missing '&' in continued character constant" warning occurs twice
kono
parents:
diff changeset
3 character(15) :: astring
kono
parents:
diff changeset
4 1 FORMAT (''&
kono
parents:
diff changeset
5 ' abcdefg x')
kono
parents:
diff changeset
6 write(astring, 1)
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
7 if (astring.ne."' abcdefg x") STOP 1
111
kono
parents:
diff changeset
8 END