id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
145	Add a point free case expression	erikd		"Straight from the haskell cafe mailing list:

    http://www.haskell.org/pipermail/haskell-cafe/2009-November/068673.html

Instead of this:

{{{
myFunc = anotherFunc $ \x -> case x of
                               Left err -> print err
                               Right msg -> putStrLn msg
}}}

allow this:

{{{
myFunc = anotherFunc $ case of
                         Left err -> print err
                         Right msg -> putStrLn msg
}}}

"	enhancement	new	minor		Source Parser				
