[project @ 2001-08-22 11:45:06 by sewardj]
[ghc-hetmet.git] / ghc / tests / reader / should_compile / read029.hs
1 -- !!! Special Ids and ops
2
3 -- The special ids 'as', 'qualified' and 'hiding' should be 
4 -- OK in both qualified and unqualified form.
5 -- Ditto special ops
6
7 module ShouldCompile where
8 import Prelude hiding ( (-) )
9
10 as        = ShouldCompile.as
11 hiding    = ShouldCompile.hiding
12 qualified = ShouldCompile.qualified
13 x!y       = x ShouldCompile.! y
14 x-y       = x ShouldCompile.- y