fpc/tests/test/tarray1.pp
2000-11-30 22:38:14 +00:00

20 lines
204 B
ObjectPascal

{$mode objfpc}
type
tc1 = class
end;
tc2 = class(tc1)
end;
tcoc1 = class of tc1;
tcoc2 = class of tc2;
procedure p(const a : array of tcoc1);
begin
end;
begin
p([tc2]);
end.