mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00
17 lines
231 B
ObjectPascal
17 lines
231 B
ObjectPascal
{ %fail }
|
|
|
|
{$mode objfpc}
|
|
|
|
var myarray : array ['a'..'zz'] of integer; //signal 291
|
|
|
|
|
|
procedure myproc (myarray: array of integer);
|
|
begin
|
|
if high(myarray)<>25 then
|
|
halt(1);
|
|
end;
|
|
|
|
begin
|
|
myproc(myarray);
|
|
end.
|