forked from qt-creator/qt-creator
9 lines
101 B
C++
9 lines
101 B
C++
![]() |
#define foobar(a) a
|
||
|
#define food foobar
|
||
|
|
||
|
void baz()
|
||
|
{
|
||
|
int aaa;
|
||
|
food(aaa);
|
||
|
}
|