blob: 6cb6f7ebf673968e06d24bac46416f995bf54950 [file] [log] [blame]
// Simple tests of the C preprocessor
#define A 1
#define A (4 / 2)
#define B 1 // This is a comment. With a / in it.
int main() {
return A + B;
}