mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-28 16:03:48 +02:00
11 lines
202 B
ObjectPascal
11 lines
202 B
ObjectPascal
{ Old file: tbs0068.pp }
|
|
{ Shows incorrect type of ofs() OK 0.99.1 (PFV and FK) }
|
|
|
|
var
|
|
p : pointer;
|
|
l : smallint;
|
|
begin
|
|
l:=Ofs(p); { Ofs returns a pointer type !? }
|
|
|
|
end.
|