Last active
April 18, 2020 00:29
-
-
Save prednaz/1e269e94277ef20d16a8f8861f4a2d47 to your computer and use it in GitHub Desktop.
This file contains 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
newtype Box phantom = Box Bool | |
unbox :: Box phantom -> Bool | |
unbox (Box content) = content | |
myBox :: Show phantom => Box phantom | |
myBox = Box False | |
result :: Bool | |
result = unbox myBox | |
-- • Ambiguous type variable ‘phantom0’ arising from a use of ‘myBox’ | |
-- prevents the constraint ‘(Show phantom0)’ from being solved. | |
-- Probable fix: use a type annotation to specify what ‘phantom0’ should be. | |
-- • In the first argument of ‘unbox’, namely ‘myBox’ | |
-- In the expression: unbox myBox | |
-- In an equation for ‘result’: result = unbox myBox | |
-- | | |
-- 10 | result = unbox myBox | |
-- | ^^^^^ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment