For instance running it on the following code in the middle of a C source file:
#define BOGO_MAX(a, b) a > b ? a : b int test() { return BOGO_MAX(3 + 4, 5); }
int test() { return 3 + 4 > 5 ? 3 + 4: 5; }
That being said if I'm not sure if some code is being compiled I just add an "#error foo" and rebuild. Or even simpler I just type in some garbage to trigger a compilation error.
For instance running it on the following code in the middle of a C source file:
Creates a new buffer containing: