fpc/tests/webtbs/tw39464.pp
2022-01-30 22:35:14 +01:00

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.