summaryrefslogtreecommitdiff
path: root/testsuite/tests/basic-modules/offset.ml
blob: 457947dcd5bdcca9f44002873c7b3a1158fc406c (plain)
1
2
3
4
5
6
7
8
9
10
module M = struct
 type t = string

 let x = 0
 let x = 1

 module Set = Set.Make(String)
end

include M