summaryrefslogtreecommitdiff
path: root/testsuite/tests/module/mod134.hs
blob: aae30f55e0e033c6a0ba037171a9efc6dba9827d (plain)
1
2
3
4
5
6
7
8
9
-- Test that 'hiding' hides the qualified name too

module Main where
import Prelude hiding (head)

main  = do print (Prelude.head [0..])
           head

head = print "head"