pascalabcnet/TestSuite/errors/err0366_where.pas
Mikhalkovich Stanislav 97a6a3d047 fix #2255
2020-06-19 13:04:44 +03:00

14 lines
153 B
ObjectPascal

type
t1<T> = class
where T: record, constructor;
end;
t2<T> = class(t1<T>)
where T: record;
end;
begin
Assert(1=1)
end.