haskell-tools-builtin-refactorings-1.0.1.1: examples/CPP/ConditionalImport.hs
{-# LANGUAGE CPP #-}
module CPP.ConditionalImport where
import CPP.A(a)
#ifndef USE_DATA_LIST
import CPP.B(b)
#endif
import CPP.A(a)
x = b
{-# LANGUAGE CPP #-}
module CPP.ConditionalImport where
import CPP.A(a)
#ifndef USE_DATA_LIST
import CPP.B(b)
#endif
import CPP.A(a)
x = b