Created
August 15, 2019 16:41
-
-
Save rintcius/a4d51297d0a5221f01ce40d04b3a34b9 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
-- ok | |
x1 :: Int | |
x1 = y | |
where | |
z = 42 | |
(y :: Int) = z | |
-- ok | |
x2 :: Int | |
x2 = y | |
where | |
y = z | |
z = 42 | |
-- nok | |
x3 :: Int | |
x3 = y | |
where | |
(y :: Int) = z -- unknown value z | |
z = 42 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment