pascalabcnet/TestSuite/where4.pas
Бондарев Иван a281e4b8d5 fix #1063
2018-09-09 19:10:15 +02:00

13 lines
151 B
ObjectPascal

type
t0=record
end;
t1<T>=class
where T: record;
end;
t2<T>=class(t1<T>) where T: record; end;
begin
var a := new t2<t0>;
end.