Module Checks.Category

type t =
  1. | AssertionFailure
  2. | InvalidMemoryAccess
  3. | DivisionByZero
  4. | IntegerOverflow
  5. | InvalidPointerComparison
  6. | InvalidPointerSubtraction
  7. | DoubleFree
  8. | NegativeArraySize
  9. | StubCondition
val hash : t -> int
val equal : t -> t -> Ppx_deriving_runtime.bool
val to_yojson : t -> [> `String of string ]
val of_yojson : Yojson.Safe.t -> (t, string) Stdlib.result