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
mayBeesToMaybe : List (Maybe a) -> Maybe (List a)
mayBeesToMaybe (x :: xs) = case x of
_ => Just (x : xs)
Expected Behavior
Error: Unexpected binder in application.
ParserErrorHelp:4:35--4:37
1 |
2 | mayBeesToMaybe : List (Maybe a) -> Maybe (List a)
3 | mayBeesToMaybe (x :: xs) = case x of
4 | _ => Just (x : xs)
^^^^^^^^
Observed Behavior
Error: Expected '=>' or 'impossible'.
ParserErrorHelp:4:35--4:37
1 |
2 | mayBeesToMaybe : List (Maybe a) -> Maybe (List a)
3 | mayBeesToMaybe (x :: xs) = case x of
4 | _ => Just (x : xs)
^^
The text was updated successfully, but these errors were encountered:
Steps to Reproduce
Expected Behavior
Observed Behavior
The text was updated successfully, but these errors were encountered: