fpc/tests/webtbf/tw0769b.pp
2004-10-31 22:04:37 +00:00

25 lines
293 B
ObjectPascal

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