diff options
Diffstat (limited to 'testsuite/tests/polykinds/T5798.hs')
-rw-r--r-- | testsuite/tests/polykinds/T5798.hs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/tests/polykinds/T5798.hs b/testsuite/tests/polykinds/T5798.hs new file mode 100644 index 0000000000..41543c74f1 --- /dev/null +++ b/testsuite/tests/polykinds/T5798.hs @@ -0,0 +1,8 @@ +{-# LANGUAGE PolyKinds, DataKinds #-} + +module T5798 where + +data Proxy t = ProxyC + +test :: Proxy '[Int, Bool] +test = ProxyC |