blob: 2cc1ee717e4c2cc35940b2b41b34b0f4e2ff810d (
plain)
1
2
3
4
5
6
7
8
9
|
{-# LANGUAGE RankNTypes, PolyKinds, DataKinds, TypeFamilies #-}
module GHCBug where
data Proxy p = Proxy
data KProxy (a :: *) = KProxy
h :: forall r . (Proxy ('KProxy :: KProxy k) ~ Proxy ('KProxy :: KProxy *) => r) -> r
h = undefined
|