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

update gcc-8.2
author mir3636
date Thu, 25 Oct 2018 10:21:07 +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 compile }
kono
parents:
diff changeset
2 ! { dg-options "-std=f2003" }
kono
parents:
diff changeset
3 ! PR 19259 Semicolon cannot start a line
kono
parents:
diff changeset
4 x=1; y=1;
kono
parents:
diff changeset
5 x=2;;
kono
parents:
diff changeset
6 x=3;
kono
parents:
diff changeset
7 ; ! { dg-error "Semicolon at" }
kono
parents:
diff changeset
8 ;; ! { dg-error "Semicolon at" }
kono
parents:
diff changeset
9 111 ; ! { dg-error "Semicolon at" }
kono
parents:
diff changeset
10 end