blob: bc9e60d7f312d5e2f1a35365c547cf153f6bb200 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{-# LANGUAGE FlexibleInstances, TypeInType #-}
module T11399 where
import Data.Kind
newtype UhOh (k :: * -> *) (a :: k *) = UhOh (k *)
-- UhOh :: forall (k : * -> *). k * -> *
instance Functor a => Functor (UhOh a) where
|