fpc/tests/webtbs/tw2645.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

34 lines
368 B
ObjectPascal

{ %version=1.1 }
{$mode objfpc}
{$inline on}
type
c = class
l : longint;
procedure p;inline;
procedure p2;
end;
procedure c.p;inline;
begin
writeln(l);
inc(l,10);
end;
procedure c.p2;
begin
l:=10;
p;
if l<>20 then
halt(1);
end;
var
o : c;
begin
o:=c.create;
o.p2;
o.free;
end.