Created
February 8, 2018 14:20
-
-
Save NIA/02f9cfd685153a0923204f9545a20c07 to your computer and use it in GitHub Desktop.
Test case for Consulo C# preprocessor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace config { | |
class Quix{} | |
#define FOO_BAR | |
#if FOO_BAR | |
// active block | |
class FooBar{ | |
} | |
#endif | |
#if !FOO_BAR | |
// non-active block - no difference | |
class FooBar : Quix{ | |
} | |
#endif | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment