summaryrefslogtreecommitdiff
path: root/testsuite/tests/indexed-types/should_compile/T4200.hs
blob: 0169f023c2bff6b9b677016b4662dc3759a1f13e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{-# OPTIONS_GHC -fno-warn-redundant-constraints #-}
{-# LANGUAGE TypeFamilies #-}

module T4200 where

import Data.Kind (Type)

class C a where
  type In a :: Type
  op :: In a -> a -> Int

-- Should be ok; no -XUndecidableInstances required
instance (In c ~ Int) => C [c] where 
  type In [c] = In c
  op _ _ = 3