mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:38:29 +02:00

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 -
18 lines
190 B
ObjectPascal
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.
|