(cabal check) Add "No internal name clash" test
[cabal.git] / cabal-testsuite / PackageTests / PreProcess / Hsc2HsOptionsCC / Foo.hsc
blob78d23168ae9d71614af7576323f373304ad66409
1 module Foo where
3 -- https://isocpp.org/wiki/faq/mixing-c-and-cpp
4 compiler :: String
5 #ifdef __cplusplus
6 compiler = "Is not C, is C++"
7 #else
8 compiler = "Is C, is not C++"
9 #endif