mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 18:47:54 +02:00
10 lines
112 B
ObjectPascal
10 lines
112 B
ObjectPascal
type
|
|
trec = record
|
|
data : longint;
|
|
end;
|
|
prec = ^trec;
|
|
|
|
begin
|
|
writeln(longint(@prec(0)^.data));
|
|
end.
|