fpc/tests/webtbs/tw0769c.pp
2002-11-15 15:57:44 +00:00

25 lines
305 B
ObjectPascal

{ %OPT=-Sew }
{ %fail }
{ this should generate a warning
because s is not initialized }
{$mode tp}
Program test;
type
SimpleProc = function : integer;
procedure test_provar;
var x,y:integer;
s : SimpleProc;
begin
{y:=5;
for x:=0 to 10 do if x<y then writeln(x);}
x:=s;
end;
begin
end.