pascalabcnet/TestSuite/errors/err0304.pas

17 lines
187 B
ObjectPascal
Raw Permalink Normal View History

2018-12-16 21:45:55 +03:00
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.