coccinelle release 0.2.5
[bpt/coccinelle.git] / tests / pb_distribute_type2.res
1 int foo() {
2 int *x;
3 return 0;
4 }
5
6
7 int foo() {
8 int **x;
9 return 0;
10 }
11
12 int foo() {
13 int (*x)[45];
14 return 0;
15 }