pascalabcnet/TestSuite/CompilationSamples/u.pas
Бондарев Иван ead24aa00c bug fix #1891
2019-03-27 21:08:37 +01:00

25 lines
286 B
ObjectPascal

unit u;
type
e1 = (
ef1,
ef2
);
t2 = class;
tarr = array[e1] of t2;
t2 = class
end;
t1 = class
a: array[e1] of t1;//обязательно тип элементов t1
procedure test(t: tarr);
begin
end;
end;
end.