Guest User

Untitled

a guest
Feb 16th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. type _ int_foo =
  2. | IF_constr : <foo:int; ..> int_foo
  3.  
  4. type _ int_bar =
  5. | IB_constr : <bar:int; ..> int_bar
  6.  
  7.  
  8. let g (type t) (x:t) (e : t int_foo) (e' : t int_bar) =
  9. let IF_constr, IB_constr = e, e' in
  10. (x:<foo:int; bar:int>)
Add Comment
Please, Sign In to add comment