summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/scripts/T13988.hs
blob: d26135e26dbc02dbfae6304207f6a19c56ab94d0 (plain)
1
2
3
4
5
6
7
8
{-# LANGUAGE PolyKinds, GADTs #-}

module T13988 where

import Data.Kind

data Foo (a :: k) where
  MkFoo :: (k ~ Type) => Foo (a :: k)