fpc/tests/webtbs/tw2983.pp
Jonas Maebe 77658b925b * disable regular array -> dynamic array type coversion support unless
{$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 -
2019-05-25 12:31:32 +00:00

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.