mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 17:59:26 +02:00
17 lines
213 B
ObjectPascal
17 lines
213 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 : pointer;
|
|
|
|
begin
|
|
p1:=@test;
|
|
p2:=@test;
|
|
end.
|