Created
May 2, 2021 20:11
-
-
Save cdsmith/d8d7876f4a978edca62d05dd454c7b9d 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
class C t where | |
data D t | |
instance forall a. C (Maybe a) where | |
data D (Maybe a) where | |
D :: forall. a -> D (Maybe a) | |
Main.hs:6:18: error: | |
Not in scope: type variable ‘a’ | |
Main.hs:6:32: error: | |
Not in scope: type variable ‘a’ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment