diff options
Diffstat (limited to 'testsuite/tests/rename/should_fail/mc13.hs')
-rw-r--r-- | testsuite/tests/rename/should_fail/mc13.hs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/tests/rename/should_fail/mc13.hs b/testsuite/tests/rename/should_fail/mc13.hs new file mode 100644 index 0000000000..2686005f7f --- /dev/null +++ b/testsuite/tests/rename/should_fail/mc13.hs @@ -0,0 +1,14 @@ +-- Test for transform list comp which should work for monad comp aswell: +-- +-- Test trying to use a function bound in the list comprehension as the transform function + +{-# OPTIONS_GHC -XRank2Types -XMonadComprehensions -XTransformListComp #-} + +module RnFail048 where + +functions :: [forall a. [a] -> [a]] +functions = [take 4, take 5] + +output = [() | f <- functions, then f] + + |