mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 20:28:14 +02:00
18 lines
169 B
ObjectPascal
18 lines
169 B
ObjectPascal
{ %fail }
|
|
{ %OPT=-Sew -veiw }
|
|
|
|
{$mode objfpc}
|
|
|
|
procedure t(out l: longint);
|
|
begin
|
|
if (l > 0) then
|
|
l := 1;
|
|
end;
|
|
|
|
var
|
|
a: longint;
|
|
begin
|
|
t(a);
|
|
writeln(a);
|
|
end.
|