Skip to content

Instantly share code, notes, and snippets.

@rintcius
Created August 15, 2019 16:41
Show Gist options
  • Save rintcius/a4d51297d0a5221f01ce40d04b3a34b9 to your computer and use it in GitHub Desktop.
Save rintcius/a4d51297d0a5221f01ce40d04b3a34b9 to your computer and use it in GitHub Desktop.
-- 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