pascalabcnet/TestSuite/units/u_generics11.pas
2022-06-19 13:47:58 +02:00

11 lines
211 B
ObjectPascal

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.