Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # module X: sig type t end = struct
- type t = { name: string }
- end
- module Y = struct
- include X
- let x = { name = "x" }
- end;;
- Error: Unbound record field label name
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement