Created
November 25, 2015 13:20
-
-
Save dasch/05a98903d0e89a5c8a82 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
The type annotation for `leftJoin` does not match its definition. | |
10│ leftJoin : Stream comparable v1 -> Stream comparable v2 -> Stream comparable (v1, Maybe v2) | |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
The type annotation is saying: | |
Signal ( comparable, a ) | |
-> Signal ( comparable, b ) | |
-> Signal ( comparable, ( a, Maybe b ) ) | |
But I am inferring that the definition has this type: | |
Signal ( comparable, a ) | |
-> Signal ( comparable, a ) | |
-> Signal ( comparable, ( a, Maybe b ) ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment