freesect-0.7: S23.hs
{- # LANGUAGE FreeSections #-} -- with GHC's -F you cannot...
module S23 where
-- Tests of default context inferencing.
--
-- This module won't compile, but you can examine the preprocessed code.
v= zipWith ( f __ y __ )
v= zipWith _[ f __ y __ ]_
v= zipWith $ f __ y __
v= zipWith ( f __ ( g __ z ) ) xs
v= zipWith ( f __ $ g __ z ) xs
v= zipWith $ f __ $ g __ z xs
v= zipWith $ f __ $ g __ z
v= f __ $ g __ z