summaryrefslogtreecommitdiff
path: root/testsuite/tests/rename/should_compile/rn017.hs
blob: 7d073e90ea67d27a26dbe8c2c65e71715181355b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-- !! Rexporting
module Test ( module Test , module RnAux017 ) where

import {-# SOURCE #-} RnAux017

f x = x

data Foo = MkFoo

class FOO a where
    op :: a -> Int

instance FOO Foo where
    op x = 42