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

module T3449 (Foo, f1) where

import T3449A

class Foo a where
    f1 :: a
    f2 :: a

instance Foo Char where
    f1 = f2
    f2 = aChar