summaryrefslogtreecommitdiff
path: root/testsuite/tests/perf/compiler/T5837.hs
blob: 90b3af1decb86fdd3f6fa9c69822e3ddac907161 (plain)
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