Skip to content

Commit

Permalink
irmin.type: drop Fun dependency for pre-4.08 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
craigfe committed Mar 13, 2020
1 parent 2c1ed8e commit 5ab226a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/irmin/test.ml
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ let test_pp_ty () =

let like_custom : empty T.t = T.like v

let map : int T.t = T.(map int) Fun.id Fun.id
let map : int T.t = T.(map int) (fun x -> x) (fun x -> x)
end in
test "custom v" Custom.v "Custom (-)";
test "custom like prim" Custom.like_prim "Custom (Prim Int)";
Expand Down

0 comments on commit 5ab226a

Please sign in to comment.