mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 16:47:53 +02:00

{$modeswitch arraytodynarray} is active (mantis #35576) o changed compiler to compile without this modeswitch o added the modeswitch to a test that depends on it git-svn-id: trunk@42118 -
21 lines
364 B
ObjectPascal
21 lines
364 B
ObjectPascal
{$mode objfpc}
|
|
{$modeswitch arraytodynarray}
|
|
type
|
|
ta1 = array[0..10] of longint;
|
|
var
|
|
a1 : array[0..10] of longint;
|
|
a2 : array of longint;
|
|
i : longint;
|
|
|
|
begin
|
|
for i:=low(a1) to high(a2) do
|
|
a1[i]:=i*i;
|
|
a2:=a1;
|
|
if length(a2)<>length(a1) then
|
|
halt(1);
|
|
for i:=low(a1) to high(a2) do
|
|
if a2[i]<>a1[i] then
|
|
halt(1);
|
|
writeln('ok');
|
|
end.
|