fpc/bugs/bug0035.pp
1998-03-25 11:26:49 +00:00

14 lines
186 B
ObjectPascal

program bug0035;
{Discovered by Daniel Mantione.}
label hallo;
begin
writeln('Hello');
begin
hallo: {Error message: Incorrect expression.}
end;
writeln('Hello again');
end.