mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 11:48:10 +02:00
10 lines
114 B
ObjectPascal
10 lines
114 B
ObjectPascal
program bug0068;
|
|
|
|
var
|
|
p : pointer;
|
|
l : longint;
|
|
begin
|
|
l:=Ofs(p); { Ofs returns a pointer type !? }
|
|
|
|
end.
|