summaryrefslogtreecommitdiff
path: root/testsuite/tests/parser/should_compile/mc16.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/parser/should_compile/mc16.hs')
-rw-r--r--testsuite/tests/parser/should_compile/mc16.hs16
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/tests/parser/should_compile/mc16.hs b/testsuite/tests/parser/should_compile/mc16.hs
new file mode 100644
index 0000000000..3f80c04abb
--- /dev/null
+++ b/testsuite/tests/parser/should_compile/mc16.hs
@@ -0,0 +1,16 @@
+{-# OPTIONS_GHC -XMonadComprehensions -XTransformListComp #-}
+
+module Foo where
+
+import Data.List
+import GHC.Exts
+
+foo = [ ()
+ | x <- [1..10]
+ , then take 5
+ , then sortWith by x
+ , then group by x
+ , then group using inits
+ , then group by x using groupWith
+ ]
+