Created
June 22, 2017 19:25
-
-
Save nqthqn/bef4301e66d6bc5607a7515fe785ad2f to your computer and use it in GitHub Desktop.
kapeesh this
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
-- UNBOUND TYPE VARIABLES ---------------------------------------- Messaging.elm | |
Type `Msg` must declare its use of type variable a | |
12|>type Msg | |
13|> = MessagesResp (WebData a) | |
You probably need to change the declaration like this: | |
type Msg a = ... | |
Here's why. Imagine one `Msg` where `a` is an Int and another where it is a | |
Bool. When we explicitly list the type variables, the type checker can see that | |
they are actually different types. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment