summaryrefslogtreecommitdiff
path: root/testsuite/tests/module/mod109.hs
blob: e9b6f2917161b4084d2113ddc22104d7f748c6ed (plain)
1
2
3
4
5
6
7
-- !!! redefining and using Prelude entities
module A( null, nonNull ) where
import Prelude hiding( null ) 
import qualified Prelude
null, nonNull :: Int -> Bool
null    x = x == 0
nonNull x = not (Prelude.null [x]) && not (null x)