summaryrefslogtreecommitdiff
path: root/testsuite/tests/polykinds/T13267.hs
blob: cfc7efbffc0cd1d9414e26e02e646814ebd07bec (plain)
1
2
3
4
5
6
7
8
9
10
{-# LANGUAGE ConstraintKinds, FlexibleContexts, FlexibleInstances, MultiParamTypeClasses #-}
module T13267 where

type C1 a = (Show (a -> Bool))

instance C1 Int where

type C2 a = (Show Bool, Show Int)

instance C2 Int where