summaryrefslogtreecommitdiff
path: root/testsuite/tests/rename/should_compile/T3103/GHC/Word.hs
blob: 6866e92879c5e600e74706b9ab6de299bf5d84d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{-# LANGUAGE NoImplicitPrelude, MagicHash #-}

module GHC.Word (
    Word(..),
    ) where

import GHC.Base
import GHC.Types

import {-# SOURCE #-} GHC.Unicode ()

instance Num Word where
    signum 0               = 0
    signum _               = 1