summaryrefslogtreecommitdiff
path: root/ghc/compiler/tests/rename/rn017.hs
blob: 3adc45fd67a23bfc778869796f1a6a7606b2b570 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Test ( Test.. , Rn017.. ) where

import Rn017

f x = x

data Foo = MkFoo

class FOO a where
    op :: a -> Int

instance FOO Foo where
    op x = 42