From 16514f272fb42af6e9c7674a9bd6c9dce369231f Mon Sep 17 00:00:00 2001 From: David Terei Date: Wed, 20 Jul 2011 11:09:03 -0700 Subject: Move tests from tests/ghc-regress/* to just tests/* --- testsuite/tests/rename/should_fail/mc13.hs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 testsuite/tests/rename/should_fail/mc13.hs (limited to 'testsuite/tests/rename/should_fail/mc13.hs') 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] + + -- cgit v1.2.1