pascalabcnet/TestSamples/FormatterTests/input/test0112u.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

24 lines
323 B
ObjectPascal

unit test0112u;
type TClass<T> = class where T:record;
//a : T;
procedure Test<U>(params arr : array of U);
var t : TClass<T>;
begin
end;
end;
{TClass3<T> = template class
a : T;
end;
TClass2<T> = template class
a : TClass3<T>;
end;}
var cls : TClass<integer>;
begin
cls := new TClass<integer>;
//cls.Test(2,3,4);
end.