Advertisement
Guest User

Untitled

a guest
Mar 13th, 2012
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. # module X: sig type t end = struct
  2. type t = { name: string }
  3. end
  4.  
  5. module Y = struct
  6. include X
  7. let x = { name = "x" }
  8. end;;
  9. Error: Unbound record field label name
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement