summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_compile/T11811.hs
blob: e3e0f810b3cab9f2584fca22d9d54a73fc2de643 (plain)
1
2
3
4
5
6
7
8
{-# LANGUAGE PolyKinds, GADTs #-}

module T11811 where

import Data.Kind

data Test (a :: x) (b :: x) :: x -> Type
  where K :: Test Int Bool Double