summaryrefslogtreecommitdiff
path: root/tests/test/tarrconstr2.pp
blob: 342e88a245dd92918207b5737b06e039dccd1887 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ %fail}
program tarrconstr2;

{$mode delphi}

type
  TAB = array of byte;
var
  D: TAB;
begin
  D := TAB.create(1+2, 'c');
end.