mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-28 16:23:44 +02:00
18 lines
188 B
ObjectPascal
18 lines
188 B
ObjectPascal
{%OPT=-Sew}
|
|
{$mode objfpc}
|
|
|
|
function f: longint;
|
|
var
|
|
a: longint absolute result;
|
|
begin
|
|
a := 5;
|
|
end;
|
|
|
|
begin
|
|
if f<>5 then
|
|
begin
|
|
writeln('error!');
|
|
halt(1);
|
|
end;
|
|
end.
|