mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:58:31 +02:00
17 lines
197 B
ObjectPascal
17 lines
197 B
ObjectPascal
{ %fail }
|
|
{$mode objfpc}
|
|
type
|
|
InnerClass = class
|
|
x: integer;
|
|
end;
|
|
|
|
OuterClass = class
|
|
inner: InnerClass;
|
|
end;
|
|
|
|
const
|
|
OffsetOfXInOuterClass = PtrUint(@OuterClass(nil).inner.x);
|
|
|
|
begin
|
|
end.
|