mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 20:08:12 +02:00
22 lines
211 B
ObjectPascal
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.
|