aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/preprocessor4.c
blob: 8b8c4da268ae2aa6b345dd4729e4f434e7ba2ef3 (plain)
1
2
3
4
5
6
7
8
9
10
/*
 * More examples from the comp.std.c discussion.
 *
 * This should result in bar(bar). We get it right.
 */
#define foo bar
#define mac(x) x(foo)

mac(foo)