mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 19:08:18 +02:00
18 lines
205 B
ObjectPascal
18 lines
205 B
ObjectPascal
{ %norun }
|
|
program Test;
|
|
|
|
{$Mode ObjFPC}
|
|
|
|
type
|
|
TTestRec = packed record
|
|
Empty: packed record end;
|
|
end;
|
|
|
|
function GetEmptyPtr(R: TTestRec): Pointer;
|
|
begin
|
|
Result := @R.Empty;
|
|
end;
|
|
|
|
begin
|
|
end.
|