mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02:00
Differential Revision: https://phabricator.services.mozilla.com/D7045 --HG-- extra : moz-landing-system : lando
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);
|
|
} |