haskell-language-server-2.15.0.0: plugins/hls-export-plugin/test/testdata/CppExportParenShared.hs
{-# LANGUAGE CPP #-}
module CppExportParenShared
( foo
#ifdef EXAMPLE_FLAG
, flagged
#endif
, bar ) where
foo :: Int
foo = 1
flagged :: Int
flagged = 2
bar :: Int
bar = 3
baz :: Int
baz = 4