1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
open Ppx_compare_lib.Builtin
type t =
{ x : int [@compare.ignore]
; y : int
}
[@@deriving equal]
[%%expect
{|
Line _, characters _-_:
Error: Cannot use [@compare.ignore] with [@@deriving equal]
|}]
type t =
{ x : int [@equal.ignore]
; y : int
}
[@@deriving compare, equal]
[%%expect
{|
Line _, characters _-_:
Error: Cannot use [@equal.ignore] with [@@deriving compare].
|}]
(* The following ones are OK: *)
type t =
{ x : int [@compare.ignore] [@equal.ignore]
; y : int
}
[@@deriving compare, equal]
[%%expect {| |}]
type t =
{ x : int [@ignore]
; y : int
}
[@@deriving compare, equal]
[%%expect {| |}]
|