mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 12:32:25 +02:00
13 lines
113 B
ObjectPascal
13 lines
113 B
ObjectPascal
{ %fail }
|
|
|
|
function f: pointer;
|
|
begin
|
|
f := pointer(1);
|
|
end;
|
|
|
|
var
|
|
p : pointer;
|
|
begin
|
|
p := @longint(f);
|
|
end.
|