Files
qt-creator/tests/unit/unittest/data/symbolfinder_macro.cpp

16 lines
145 B
C++
Raw Normal View History

#define Macro 40
int main(int argc, char *argv[])
{
int x = 5 + Macro;
#undef Macro
#define Macro 70
x += Macro;
x += Macro;
}