mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 09:28:13 +02:00
14 lines
186 B
ObjectPascal
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.
|