summaryrefslogtreecommitdiff
path: root/testsuite/tests/polykinds/T11399.hs
blob: 56f3c11ef741801fd63e72ad0107b0c3f06ff51b (plain)
1
2
3
4
5
6
7
8
9
10
{-# LANGUAGE FlexibleInstances, PolyKinds #-}
module T11399 where

import Data.Kind

newtype UhOh (k :: * -> *) (a :: k *) = UhOh (k *)

-- UhOh :: forall (k : * -> *). k * -> *

instance Functor a => Functor (UhOh a) where