fpc/tests/tbs0035.pp
1998-12-02 13:05:01 +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.