pascalabcnet/TestSuite/errors/err0304.pas
Бондарев Иван dcf1e4da13 bug fix #1583
2018-12-16 19:45:55 +01:00

17 lines
187 B
ObjectPascal

type
I1<T> = interface;
I2<T> = interface;
I1<T> = interface(I2<T>)
end;
I2<T> = interface(I1<T>)
end;
type t1=class(I1<byte>) end;
begin
new t1;
end.