haskell-tools-refactor-1.0.1.1: examples/Type/Primitives.hs
{-# LANGUAGE MagicHash #-}
module Type.Primitives where
import GHC.Prim
data MyInt = MyInt Int#
my3 = MyInt 3#
myPlus :: MyInt -> MyInt -> MyInt
myPlus (MyInt i) (MyInt j) = MyInt (i +# j)