diff options
Diffstat (limited to 'testsuite/tests/parser/should_compile/read054.hs')
-rw-r--r-- | testsuite/tests/parser/should_compile/read054.hs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testsuite/tests/parser/should_compile/read054.hs b/testsuite/tests/parser/should_compile/read054.hs new file mode 100644 index 0000000000..4e0c589bf3 --- /dev/null +++ b/testsuite/tests/parser/should_compile/read054.hs @@ -0,0 +1,10 @@ + +{-# OPTIONS_GHC -XParallelListComp #-} + +module Foo where + +foo = [ () + | () <- foo + | () <- foo + ] + |