mte/unikernel/duniverse/base/test/test_int_hash.ml
2025-11-11 02:07:51 +01:00

7 lines
225 B
OCaml

open! Base
open! Import
let%expect_test ("int hash is not ident" [@tags "64-bits-only"]) =
print_s [%message "hash of 10" (Int.hash 10 : int)];
[%expect {| ("hash of 10" ("Int.hash 10" 1_579_120_067_278_557_813)) |}]
;;