RISC-V: Regenerate opt urls.
[official-gcc.git] / gcc / testsuite / gfortran.dg / goto_7.f
blobe230b7b6f14e2527e311607bdb5845dab689d089
1 ! { dg-do compile }
2 ! { dg-options "-std=legacy" }
4 ! Check for error message when computed and assigned gotos reference
5 ! illegal label numbers.
7 ASSIGN 1 TO I
8 GOTO (1, 2, 3, 42), 2 ! { dg-error "is never defined" }
9 GOTO I, (1, 2, 3, 43) ! { dg-error "is never defined" }
10 1 CONTINUE
11 2 CONTINUE
12 3 CONTINUE
13 c No label 42 or 43.
14 END