-
-
Save Blaisorblade/a0a22d2de0dc1dd5f77ec395fa05fa9b 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
{-# LANGUAGE CPP, MagicHash #-} | |
module Lib where | |
import qualified Prelude | |
#ifdef __GLASGOW_HASKELL__ | |
import qualified GHC.Base | |
unsafeCoerce = GHC.Base.unsafeCoerce# | |
#else | |
-- HUGS | |
import qualified IOExts | |
unsafeCoerce = IOExts.unsafeCoerce | |
#endif | |
unsafeCoerce :: a -> b | |
__ :: any | |
__ = Prelude.error "Logical or arity value used" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment