haskell-tools-refactor-0.7.0.0: examples/CPP/ConditionalImportHalfRemoved.hs
{-# LANGUAGE CPP #-}
module CPP.ConditionalImportHalfRemoved where
import Data.List
#ifndef USE_DATA_LIST
import Control.Monad ((>>))
#endif
import Control.Applicative ((<$>))
a = id <$> (Nothing >> Nothing)