mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 18:47:54 +02:00
12 lines
281 B
ObjectPascal
12 lines
281 B
ObjectPascal
{ %fail }
|
|
program test;
|
|
|
|
procedure proc(var values: array of string);
|
|
begin
|
|
values := ['hi']; // project1.lpr(5,10) Error: Assignments to formal parameters and open arrays are not possible
|
|
// project1.lpr(5,13) Error: Internal error 99080501
|
|
end;
|
|
|
|
begin
|
|
end.
|