fpc/tests/test/tthlp28.pp

22 lines
211 B
ObjectPascal

{ %NORUN }
program tthlp28;
{$mode delphi}
type
TPLongIntHelper = record helper for PLongInt
procedure Test;
end;
procedure TPLongIntHelper.Test;
begin
end;
var
p: PLongInt;
begin
p.Test;
end.