fpc/tests/tbs/tb0042.pp
2016-07-05 22:42:38 +00:00

17 lines
217 B
ObjectPascal

{ Old file: tbs0047.pp }
{ compiling with -So crashes the compiler OK 0.99.1 (CEC) }
procedure test;
begin
end;
var
p1 : procedure;
p2 : codepointer;
begin
p1:=@test;
p2:=@test;
end.