ghc-exactprint-0.5.0.0: tests/examples/ghc710/Cpp.hs
{-# Language CPP #-}
#if __GLASGOW_HASKELL__ > 704
foo :: Int
#else
foo :: Integer
#endif
foo = 3
bar :: (
#if __GLASGOW_HASKELL__ > 704
Int)
#else
Integer)
#endif
bar = 4
{-# Language CPP #-}
#if __GLASGOW_HASKELL__ > 704
foo :: Int
#else
foo :: Integer
#endif
foo = 3
bar :: (
#if __GLASGOW_HASKELL__ > 704
Int)
#else
Integer)
#endif
bar = 4