summaryrefslogtreecommitdiff
path: root/testsuite/tests/polykinds/T16342.hs
blob: 5eafcee9ec22dbb0255ee0c67255d09bc7bff839 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{-# LANGUAGE MultiParamTypeClasses, TypeInType, ConstrainedClassMethods, ScopedTypeVariables #-}

module T16342 where

import Data.Proxy

class C (a::ka) x where
  cop :: D a x => x -> Proxy a -> Proxy a
  cop _ x = x :: Proxy (a::ka)

class D (b::kb) y where
  dop :: C b y => y -> Proxy b -> Proxy b
  dop _ x = x :: Proxy (b::kb)