Open keigoi opened 7 years ago
type 'a t = V of 'a data
match%lin exp with | V(x:int data) -> (... here x has type int)
so I want to remove this "data" ascription. Similar thing to linear pattern.
type 'a t = V of 'a data
so I want to remove this "data" ascription. Similar thing to linear pattern.