1 2 3 4 5 6 7 8 9 10
void F(); #define BAD_MACRO(x) \ F(); \ F() void positives() { if (1) BAD_MACRO(1); }