pascalabcnet/TestSuite/units/u_generics4.pas

14 lines
176 B
ObjectPascal
Raw Permalink Normal View History

2020-08-17 17:55:39 +03:00
unit u_generics4;
type
c1<T> = class
public static function operator implicit(o: T): c1<T> := nil;
end;
c2<T1, T2> = class(c1<T2>) end;
end.