pascalabcnet/TestSuite/units/u_generics11.pas

11 lines
211 B
ObjectPascal
Raw Permalink Normal View History

2022-06-19 14:47:58 +03:00
unit u_generics11;
type
t1<T> = class
public static function operator=(a, b: t1<T>): boolean := false;
public static function operator<>(a, b: t1<T>): boolean := not (a=b);
end;
end.