This commit is contained in:
pierre 2000-03-20 13:14:15 +00:00
parent 4a66eb02e5
commit d6280bbc38

25
tests/webtbs/tbug876.pp Normal file
View File

@ -0,0 +1,25 @@
{$OPT=-pg}
program test1;
var
i,j:longint;
a,b:double;
procedure test;
begin
b:=1.0;
i:=2;
a:=b+3;
j:=i div 2;
end;
procedure test2;
begin
test;
end;
begin
test;
test2;
test;
end.