fpc/tests/tbs/tb0434.pp
peter 107c954939 * procvar and absolute probs
* procvar and addr() probs
2002-12-17 19:13:49 +00:00

8 lines
88 B
ObjectPascal

var
x:function:longint;
y:pointer absolute x;
begin
if y<>nil then
halt(1);
end.