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

data T k (x :: k) = MkT

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