summaryrefslogtreecommitdiff
path: root/testsuite/tests/typing-modules-bugs/pr6944_ok.ml
blob: 9ff8d3564e37b90d8259d2b6525e5c7e4af0bd10 (plain)
1
2
3
4
5
6
7
8
9
10
11
(* TEST
flags = " -w -a "
* setup-ocamlc.byte-build-env
** ocamlc.byte
*** check-ocamlc.byte-output
*)

let f () =
   let module S = String in
   let module N = Map.Make(S) in
   N.add "sum" 41 N.empty;;