Release coccinelle-0.1.4
[bpt/coccinelle.git] / tests / test_unsigned_meta.cocci
1 @@
2 type T;
3 @@
4
5 - unsigned
6 T x;
7
8 @@
9 type T;
10 @@
11
12 - signed
13 T y;
14
15 @r@
16 type T;
17 @@
18
19 unsigned T q;
20 + T r;
21 + unsigned T s1;
22 + signed T s2;
23
24 @@
25 type 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;