Created
July 17, 2019 15:11
-
-
Save hanshoglund/45c25d65047968ed8254ecc4e3a051e0 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
data Bar (xs :: [k]) where | |
N :: Bar '[] | |
C :: Bar (x : xs) | |
class Foo xs where | |
foo :: Bar xs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment