diff options
Diffstat (limited to 'testsuite/tests/parser/should_compile/read062.hs')
-rw-r--r-- | testsuite/tests/parser/should_compile/read062.hs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/tests/parser/should_compile/read062.hs b/testsuite/tests/parser/should_compile/read062.hs new file mode 100644 index 0000000000..4d57585c10 --- /dev/null +++ b/testsuite/tests/parser/should_compile/read062.hs @@ -0,0 +1,16 @@ +{-# OPTIONS_GHC -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
+ ]
+
|