summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/indexed-types/should_fail/T3092.hs
blob: e3a671e67e0e3570e9b675bd69322a4254e186d4 (plain)
1
2
3
4
5
6
7
8
9
{-# LANGUAGE TypeFamilies #-}
module T3092 where

data T a = T1 a
data instance T Int = T2 Char

type S b = b
type instance S Int = Char