packages feed

haskell-language-server-2.15.0.0: plugins/hls-export-plugin/test/testdata/CppExportTail.hs

{-# LANGUAGE CPP #-}
module CppExportTail
  ( foo
#ifdef EXAMPLE_FLAG
  , flagged
#endif
  ) where

foo :: Int
foo = 1

flagged :: Int
flagged = 2

baz :: Int
baz = 3