mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 06:08:22 +02:00
15 lines
156 B
ObjectPascal
15 lines
156 B
ObjectPascal
{ %fail }
|
|
{$mode objfpc}
|
|
|
|
type
|
|
PRec = ^Rec;
|
|
Rec = record
|
|
x: array[2 .. 4] of integer;
|
|
end;
|
|
|
|
const
|
|
OffsetOfX1 = PtrUint(@PRec(nil)^.x[1]);
|
|
|
|
begin
|
|
end.
|