summaryrefslogtreecommitdiff
path: root/testsuite/tests/polykinds/T14174.hs
blob: 7a58b70fc6ccd2a34cec408d20ef6d36ec31c5f4 (plain)
1
2
3
4
5
6
{-# LANGUAGE  TypeInType, RankNTypes, KindSignatures, PolyKinds #-}
module T14174 where

data T k (x :: k) = MkT

data S x = MkS (T (x Int) x)