mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 20:28:14 +02:00
15 lines
186 B
ObjectPascal
15 lines
186 B
ObjectPascal
{ %FAIL }
|
|
{ Old file: tbf0242.pp }
|
|
{ Crash when passing a procedure to formal parameter OK 0.99.11 (PM) }
|
|
|
|
procedure p;
|
|
begin
|
|
end;
|
|
|
|
procedure p1(var x);
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
p1(p);
|
|
end. |