mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 14:31:59 +02:00
13 lines
155 B
ObjectPascal
13 lines
155 B
ObjectPascal
{$mode delphi}
|
|
|
|
type
|
|
TMyClass = class
|
|
i, i2 :LongInt;
|
|
end;
|
|
|
|
begin
|
|
if ptruint(@TMyClass(pointer(5)).i2)<>(5+sizeof(pointer)+4) then
|
|
halt(1);
|
|
end.
|
|
|