mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 16:48:05 +02:00
19 lines
204 B
ObjectPascal
19 lines
204 B
ObjectPascal
{ %fail }
|
|
{$mode objfpc}
|
|
|
|
type
|
|
NestedRec = record
|
|
x, y: integer;
|
|
end;
|
|
|
|
PRec = ^Rec;
|
|
Rec = record
|
|
items: array of NestedRec;
|
|
end;
|
|
|
|
const
|
|
OffsetOf2Y = PtrUint(@PRec(nil)^.items[2].y);
|
|
|
|
begin
|
|
end.
|