handle label attributes
[smatch.git] / validation / preprocessor2.c
blob340938ee96dc905e818e116b7dbefe0c90ef28d8
1 /*
2 * This one we happen to get right.
4 * It should result in a simple
6 * a + b
8 * for a proper preprocessor.
9 */
10 #define TWO a, b
12 #define UNARY(x) BINARY(x)
13 #define BINARY(x, y) x + y
15 UNARY(TWO)