blob: 9c3801faf03fbe02086f8419e956984c2a13641e (
plain)
1
2
3
4
5
6
7
8
|
{-# LANGUAGE PolyKinds #-}
module T16326_Fail7 where
import Data.Kind
-- Make sure that this doesn't parse as something goofy like
-- forall (forall :: Type -> Type) (k :: Type). forall k -> k -> Type
data Foo :: forall k -> k -> Type
|