fpc/tests/webtbs/tw12404.pp
Jonas Maebe 7f8e9b8d35 * fixed node complexity calculation for certain inlinenodes
(mantis 12404)

git-svn-id: trunk@12020 -
2008-11-02 14:50:17 +00:00

41 lines
460 B
ObjectPascal

{ %norun }
{$mode objfpc}
{$h+}
{$inline on}
unit tw12404;
interface
Type
TMyClass = Class(TObject)
Private
FPos : integer;
FChar : PChar;
Function MyFunc : Char; inline;
Function MyOtherFunction : Integer;
end;
implementation
Function TMyClass.MyFunc : Char; inline;
begin
Inc(FPos);
Inc(FChar);
Result:=FChar^;
end;
Function TMyClass.MyOtherFunction : Integer;
Var
C : Char;
begin
C:=MyFunc;
end;
end.