summaryrefslogtreecommitdiff
path: root/testsuite/tests/rep-poly/RepPolyWildcardPattern.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/rep-poly/RepPolyWildcardPattern.hs')
-rw-r--r--testsuite/tests/rep-poly/RepPolyWildcardPattern.hs6
1 files changed, 6 insertions, 0 deletions
diff --git a/testsuite/tests/rep-poly/RepPolyWildcardPattern.hs b/testsuite/tests/rep-poly/RepPolyWildcardPattern.hs
new file mode 100644
index 0000000000..4bc6df0323
--- /dev/null
+++ b/testsuite/tests/rep-poly/RepPolyWildcardPattern.hs
@@ -0,0 +1,6 @@
+module RepPolyWildcardPattern where
+
+import GHC.Exts
+
+foo :: forall rep (a :: TYPE rep). a -> ()
+foo _ = ()