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

module T12127a where

class C a where
  data T a

instance C Int where
  data T Int = MkT { x, y :: Int }