summaryrefslogtreecommitdiff
path: root/testsuite/tests/indexed-types/should_compile/T8979.hs
blob: 85e13cee4e08ad07eeaf5a7bb67d344722b9380e (plain)
1
2
3
4
5
6
7
8
9
10
{-# LANGUAGE TypeFamilies #-}
module T8979 where

type family F a
type family G a

type H a = G a

f :: F (G Char) -> F (H Char)
f a = a