Module Checks.Category

type t =
  1. | AssertionFailure
  2. | InvalidMemoryAccess
  3. | DivisionByZero
  4. | SignedIntegerOverflowInArithmetic
  5. | SignedIntegerOverflowInExplicitCast
  6. | SignedIntegerOverflowInImplicitCast
  7. | UnsignedIntegerOverflowInArithmetic
  8. | UnsignedIntegerOverflowInExplicitCast
  9. | UnsignedIntegerOverflowInImplicitCast
  10. | InvalidShift
  11. | InvalidPointerComparison
  12. | InvalidPointerSubtraction
  13. | DoubleFree
  14. | NegativeArraySize
  15. | 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