mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 09:58:27 +02:00
11 lines
136 B
ObjectPascal
11 lines
136 B
ObjectPascal
|
|
{$ifdef fpc}{$mode Delphi}{$endif}
|
|
|
|
var
|
|
x:function(x:longint):longint;
|
|
y:pointer absolute x;
|
|
begin
|
|
if y<>nil then
|
|
halt(1);
|
|
end.
|