summaryrefslogtreecommitdiff
path: root/testsuite/tests/rename/should_compile/T14881Aux.hs
blob: 13b8f31d047521eb25e4a116ea250b051418fd5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module T14881Aux where

-- unambiguous function name.
adjust :: ()
adjust = undefined

-- ambiguous function name.
length :: ()
length = undefined

data L = Cons { x :: Int      -- unambiguous field selector
              , tail :: [Int] -- ambiguous field selector
              }