Last active
December 15, 2015 19:48
-
-
Save startling/5313489 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*Types> :r | |
Type checking ./Maybe.idr | |
Types.idr:2:INTERNAL ERROR: "Can't apply a non-function type" | |
This is probably a bug, or a missing error message. | |
Please consider reporting at https://github.com/edwinb/Idris-dev/issues |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data MaybeT : (Type -> Type) -> Type where | |
MT : {m : Type -> Type} -> m (Maybe a) -> MaybeT m a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment