mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 20:47:53 +02:00
20 lines
253 B
ObjectPascal
20 lines
253 B
ObjectPascal
{ %FAIL }
|
|
{ Old file: tbf0352.pp }
|
|
{ }
|
|
|
|
{$ifdef fpc}{$MODE OBJFPC}{$endif}
|
|
|
|
Procedure Proc1(args:array of const);
|
|
begin
|
|
end;
|
|
|
|
Procedure Proc2(args:array of longint);
|
|
Begin
|
|
{ this should give an error }
|
|
Proc1(args);
|
|
End;
|
|
|
|
Begin
|
|
Proc1([0,1]);
|
|
End.
|