tbs0035.pp 210 B

123456789101112131415
  1. { $OPT=-Sg }
  2. program bug0035;
  3. {Discovered by Daniel Mantione.}
  4. label hallo;
  5. begin
  6. writeln('Hello');
  7. begin
  8. hallo: {Error message: Incorrect expression.}
  9. end;
  10. writeln('Hello again');
  11. end.