mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 11:38:01 +02:00
15 lines
253 B
ObjectPascal
15 lines
253 B
ObjectPascal
{ Old file: tbs0035.pp }
|
|
{ label at end of block gives error OK 0.9.9 (FK) }
|
|
|
|
{$goto on}
|
|
|
|
label hallo;
|
|
|
|
begin
|
|
writeln('Hello');
|
|
begin
|
|
hallo: {Error message: Incorrect expression.}
|
|
end;
|
|
writeln('Hello again');
|
|
end.
|