forked from mirrors/gecko-dev
Reformatting this directory can break some of the tests here. Differential Revision: https://phabricator.services.mozilla.com/D13518
10 lines
No EOL
111 B
C++
10 lines
No EOL
111 B
C++
void F();
|
|
|
|
#define BAD_MACRO(x) \
|
|
F(); \
|
|
F()
|
|
|
|
void positives() {
|
|
if (1)
|
|
BAD_MACRO(1);
|
|
} |