fpc/tests/test/tinline5.pp
Jonas Maebe 23cd46151a + test for new inlining (fails currently)
git-svn-id: trunk@1631 -
2005-11-02 15:11:17 +00:00

44 lines
515 B
ObjectPascal

{$inline on}
{$mode objfpc}
type
tc = class
lf: longint;
procedure t(const l: longint); inline;
end;
var
a: longint;
procedure tc.t(const l: longint); inline;
begin
lf := 10;
if (l <> 5) then
begin
writeln('error class');
halt(1);
end;
end;
procedure t(const l: longint); inline;
begin
a := 10;
if (l <> 5) then
begin
writeln('error proc');
halt(1);
end;
end;
var
c: tc;
begin
c := tc.create;
c.lf := 5;
c.t(c.lf);
a := 5;
t(a);
end.