summaryrefslogtreecommitdiff
path: root/testsuite/tests/rename/should_compile/T7007.hs
blob: 73a6f06b76f84c9ab27767364ec8e186e91e0434 (plain)
1
2
3
4
5
6
7
8
9
10
module T7007 where

import Data.Monoid( Monoid(..) )

infixr 5 ++   -- This unambiguously refers to the local definition

(++) :: Monoid a => a -> a -> a
(++) = mappend