mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 10:29:36 +02:00
22 lines
207 B
ObjectPascal
22 lines
207 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tthlp27;
|
|
|
|
{$mode delphi}
|
|
|
|
type
|
|
TLongIntHelper = record helper for LongInt
|
|
procedure Test;
|
|
end;
|
|
|
|
procedure TLongIntHelper.Test;
|
|
begin
|
|
|
|
end;
|
|
|
|
var
|
|
p: PLongInt;
|
|
begin
|
|
p.Test;
|
|
end.
|