11 lines
211 B
ObjectPascal
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. |