minor modification in let binding syntax
- patterns used after a let binding must be enclosed in parenthesis consider : type t( 'a ) = [ 'a* ] ;; this function declaration works let (t(Int) & x) = [ 1 ] ;; while without parenthesis will raise a failure.
Please register or sign in to comment