fpc/tests/tbf/tb0178.pp
Jonas Maebe b610622ce1 + test for out-initialised checking
git-svn-id: trunk@2488 -
2006-02-08 20:34:16 +00:00

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.