PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / end_block_label_1.f90
blobfeb12fcf8dbdd2df2c8365ff10d3fa573d5bc9bc
1 ! { dg-do compile }
3 ! PR fortran/50071
4 ! A label in an END BLOCK statement was ignored; as a result, a GOTO
5 ! to such a label was rejected.
7 ! Contributed by Tobias Burnus <burnus@net-b.de>
9 block
10 goto 1
11 print *, 'Hello'
12 1 end block
13 end