blob: 47d903b9224bba7e4daf014fb39dd189735fdc6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
-- 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 group function
{-# OPTIONS_GHC -XRankNTypes -XMonadComprehensions -XTransformListComp #-}
module RnFail049 where
import Data.List(inits, tails)
functions :: [[a] -> [[a]]]
functions = [inits, tails]
output = [() | f <- functions, then group using f]
|