summaryrefslogtreecommitdiff
path: root/testsuite/tests/indexed-types/should_fail/T13972.hs
blob: a0a203d30abb3590058422f97d17f9a330ee1fea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE PolyKinds #-}
{-# LANGUAGE TypeFamilies #-}
module Bug where

import Data.Kind

class C (a :: k) where
  type T k :: Type

instance C Left where
  type T (a -> Either a b) = Int