tb0164.pp 283 B

123456789101112131415161718192021222324252627
  1. { %fail }
  2. program tb0164;
  3. { Non local goto cannot be handled properly by the compiler,
  4. and should therefore not be allowed.}
  5. {$GOTO ON}
  6. procedure foo;
  7. label 999;
  8. procedure bar;
  9. begin
  10. goto 999
  11. end;
  12. begin
  13. bar;
  14. 999:
  15. end;
  16. begin
  17. foo;
  18. end.