permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / test_unsigned_meta.cocci
CommitLineData
faf9a90c
C
1@@
2type T;
3@@
4
5- unsigned
6 T x;
7
8@@
9type T;
10@@
11
12- signed
13 T y;
14
15@r@
16type T;
17@@
18
19 unsigned T q;
20+ T r;
21+ unsigned T s1;
22+ signed T s2;
23
24@@
25type r.T;
26@@
27
28- T m;
29
30@@
31@@
32+ signed
33 int x;
34+ char new_x;
35
36@@
37@@
38+ unsigned
39 int y;
40+ char new_y;