summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/typecheck/should_fail/tcfail191.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghc-regress/typecheck/should_fail/tcfail191.hs')
-rw-r--r--testsuite/tests/ghc-regress/typecheck/should_fail/tcfail191.hs12
1 files changed, 0 insertions, 12 deletions
diff --git a/testsuite/tests/ghc-regress/typecheck/should_fail/tcfail191.hs b/testsuite/tests/ghc-regress/typecheck/should_fail/tcfail191.hs
deleted file mode 100644
index e6553d07e2..0000000000
--- a/testsuite/tests/ghc-regress/typecheck/should_fail/tcfail191.hs
+++ /dev/null
@@ -1,12 +0,0 @@
--- Checks that the correct type is used checking the using clause of the group
-
-{-# OPTIONS_GHC -XTransformListComp #-}
-
-module ShouldFail where
-
-data Unorderable = Gnorf | Pinky | Brain
-
-foo = [ ()
- | x <- [Gnorf, Brain]
- , then group using take 5
- ]