diff options
Diffstat (limited to 'testsuite/tests/deSugar/should_run/mc05.hs')
-rw-r--r-- | testsuite/tests/deSugar/should_run/mc05.hs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testsuite/tests/deSugar/should_run/mc05.hs b/testsuite/tests/deSugar/should_run/mc05.hs new file mode 100644 index 0000000000..c2d7d2d4a5 --- /dev/null +++ b/testsuite/tests/deSugar/should_run/mc05.hs @@ -0,0 +1,11 @@ +-- Test transform WITHOUT a by clause + +{-# OPTIONS_GHC -XMonadComprehensions -XTransformListComp #-} + +module Main where + +main = putStrLn (show output) + where + output = [ x + | x <- [1..10] + , then take 5 ] |