summaryrefslogtreecommitdiff
path: root/tests/auto/cplusplus/preprocessor/data/recursive.2.cpp
blob: 0e3a6e64a523a7446be1855555b872786c0ce27d (plain)
1
2
3
4
5
6
#define a(x) b(x) c(x)
#define b(x) c(x) a(x)
#define c(x) a(x) b(x)

b(1)
a(1)