summaryrefslogtreecommitdiff
path: root/tests/auto/cplusplus/preprocessor/data/identifier-expansion.4.cpp
blob: 9c9c356c3d6583fc01dc65b68002f06f43f980cd (plain)
1
2
3
4
5
6
7
8
#define foobar(a)       a
#define food            foobar

void baz()
{
    int aaa;
    food(aaa);
}