1 2 3 4 5 6 7 8 9
{-# LANGUAGE TypeFamilies #-} module T5837 where type family TF a :: * type instance TF (a,b) = (TF a, TF b) t :: (a ~ TF (a,Int)) => Int t = undefined