unit u_generics11; type t1 = class public static function operator=(a, b: t1): boolean := false; public static function operator<>(a, b: t1): boolean := not (a=b); end; end.