summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cs/10102-pp-ignore.mm
blob: f26232c9bca2f25e316c72dabfc6f61e5dc480d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#define a   z   \
            x

#define a(b)    z   \
                x

#define ab(b)   z   \
                x

#define abc(b)  z   \
                x

#define abcd(b) z   \
                x


#if FOO
#   define D(a, ...) B(FOO(a, __LINE__, __VA_ARGS__))
#   define C(msg)           \
        PP_WRAP_CODE(       \
            if (!msg)       \
            {               \
                BAR();      \
                BARBAR();   \
                BARBARBAR();\
            })
#else
#   define C(msg, ...)      EMPTY
#endif