mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 23:48:07 +02:00
15 lines
141 B
ObjectPascal
15 lines
141 B
ObjectPascal
{ %fail }
|
|
|
|
procedure test(a: array of longint); forward;
|
|
|
|
type
|
|
tl = type longint;
|
|
|
|
procedure test(a: array of tl);
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|
|
|