blob: 26436b25883464dbbf73f1751090f2bce59df4e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//TEST:SIMPLE:
// #define support
#define FOO 1.0f
float foo() { return FOO + 2.0; }
#define BAR 99
#if BAR > 10
int bar() { return 0; }
#else
BadThing shouldntCompile;
#endif
|