mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 03:19:27 +02:00
22 lines
252 B
ObjectPascal
22 lines
252 B
ObjectPascal
{ %version=1.1}
|
|
{$ifdef fpc}
|
|
{$mode delphi}
|
|
{$else}
|
|
type
|
|
qword = int64;
|
|
{$endif}
|
|
|
|
var
|
|
b : byte;
|
|
i : smallint;
|
|
i64 : int64;
|
|
q : qword;
|
|
p : pointer;
|
|
|
|
begin
|
|
p:=pointer(b);
|
|
p:=pointer(i);
|
|
p:=pointer(i64);
|
|
p:=pointer(q);
|
|
end.
|