You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type maybe 'a =Just 'a |Nothingval (>>=) 'a 'b : fn (maybe 'a)(fn 'a -> maybe 'b)->(maybe 'b)let (>>=) x f =
match x with
Nothing->Nothing-- | Just y -> f y
This code is compiled without warnings/errors, but it should not (because 2nd clause is commented out)
The text was updated successfully, but these errors were encountered:
This code is compiled without warnings/errors, but it should not (because 2nd clause is commented out)
The text was updated successfully, but these errors were encountered: