aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/algol68/execute/serial-clause-9.a68
blob: d8fe7c4d40d943fc0144b6dafe7c5c395a4a3114 (plain)
1
2
3
4
5
6
7
8
9
# { dg-options "-fstropping=upper" }  #
# Serial clause with jump at the end.  #

BEGIN INT i := BEGIN BOOL cont := TRUE;
               back: cont := FALSE;
                     IF cont THEN GOTO back FI
               END;
      ASSERT (i = 0)
END