mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 20:08:52 +02:00
11 lines
135 B
ObjectPascal
11 lines
135 B
ObjectPascal
{ %FAIL }
|
|
|
|
{ @(addr(x)) should be refused in normal mode }
|
|
|
|
var
|
|
x:function(x:longint):longint;
|
|
v:pointer;
|
|
begin
|
|
v:=@(addr(x));
|
|
end.
|