blob: ce2368bbbea0a097fd3cf8693d719e76a58d117c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{-# LANGUAGE DataKinds, PolyKinds, ExplicitForAll #-}
module BadTelescope5 where
import Data.Kind
import Data.Proxy
data SameKind :: k -> k -> *
bar :: forall a k (b :: k) (c :: Proxy b) (d :: Proxy a). Proxy c -> SameKind b d
bar = undefined
|