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

import Data.Kind

newtype UhOh (k :: * -> *) (a :: k *) = UhOh (k *)
instance Functor k => Functor (UhOh k) where