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

module T11811 where

import Data.Kind

type Test :: x -> x -> x -> Type
data Test a b c
  where K :: Test Int Bool Double