Source code
Revision control
Copy as Markdown
Other Tools
void F();
#define BAD_MACRO(x) \
F(); \
F()
void positives() {
if (1)
BAD_MACRO(1);
}
void F();
#define BAD_MACRO(x) \
F(); \
F()
void positives() {
if (1)
BAD_MACRO(1);
}