mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 20:51:17 +02:00
17 lines
217 B
ObjectPascal
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.
|