mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 09:58:27 +02:00
20 lines
185 B
ObjectPascal
20 lines
185 B
ObjectPascal
function f: string;
|
|
|
|
procedure t;
|
|
begin
|
|
f := 'test';
|
|
end;
|
|
|
|
begin
|
|
t;
|
|
end;
|
|
|
|
|
|
begin
|
|
if f <> 'test' then
|
|
begin
|
|
writeln('error!');
|
|
halt(1);
|
|
end;
|
|
end.
|