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