summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_fail/T17594.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/typecheck/should_fail/T17594.hs')
-rw-r--r--testsuite/tests/typecheck/should_fail/T17594.hs10
1 files changed, 0 insertions, 10 deletions
diff --git a/testsuite/tests/typecheck/should_fail/T17594.hs b/testsuite/tests/typecheck/should_fail/T17594.hs
deleted file mode 100644
index 694aec46a7..0000000000
--- a/testsuite/tests/typecheck/should_fail/T17594.hs
+++ /dev/null
@@ -1,10 +0,0 @@
-module T17594 where
-
-id1 :: forall a. a -> a
-id1 @a x = x
-
-id2 :: forall a. a -> a
-id2 @_ x = x
-
-id3 :: forall a. a -> a
-id3 @a (x :: a) = x