fpc/tests/webtbs/tw18121.pp
Jonas Maebe caea5ac8be * record a load node for the self/vmt tree of the current routine in the
tcallnode constructor, so that when it's needed later during pass 1,
    its value doesn't depend on the context in which pass 1 is executed
    (e.g. when inlining) (mantis #18121)

git-svn-id: trunk@30908 -
2015-05-25 12:55:40 +00:00

18 lines
190 B
ObjectPascal

{ %recompile }
{$mode objfpc}
{$inline on}
uses
uw18121;
var
IntO: TPointerList2;
begin
IntO := TPointerList2.Create;
IntO.SetF(PInteger(nil));
IntO.WriteLn;
IntO.Free;
end.