summaryrefslogtreecommitdiff
path: root/testsuite/tests/rep-poly/RepPolyPartialSig.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/rep-poly/RepPolyPartialSig.hs')
-rw-r--r--testsuite/tests/rep-poly/RepPolyPartialSig.hs8
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/tests/rep-poly/RepPolyPartialSig.hs b/testsuite/tests/rep-poly/RepPolyPartialSig.hs
new file mode 100644
index 0000000000..afaf14ecc7
--- /dev/null
+++ b/testsuite/tests/rep-poly/RepPolyPartialSig.hs
@@ -0,0 +1,8 @@
+{-# LANGUAGE TypeFamilies, PartialTypeSignatures #-}
+module RepPolyPartialSig where
+
+import GHC.Exts
+
+type family A :: RuntimeRep
+
+f x = x :: (_ :: TYPE A)