Skip to content

Instantly share code, notes, and snippets.

@nqthqn
Created June 22, 2017 19:25
Show Gist options
  • Save nqthqn/bef4301e66d6bc5607a7515fe785ad2f to your computer and use it in GitHub Desktop.
Save nqthqn/bef4301e66d6bc5607a7515fe785ad2f to your computer and use it in GitHub Desktop.
kapeesh this
-- 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