summaryrefslogtreecommitdiff
path: root/testsuite/tests/rename/should_compile/DodgyA.hs
blob: 39cb3eca848f0065ff7521df0d8d061b222f5bf3 (plain)
1
2
3
4
5
6
7
8
9
{-# LANGUAGE TypeFamilies #-}

module DodgyA(C(..), X(..)) where

class C a where
  data X a

instance C Int where
  data X Int = X1 Bool