Release coccinelle-0.1.1
[bpt/coccinelle.git] / tests / pb_distribute_type3.res
CommitLineData
34e49164
C
1int foo() {
2 int y, x;
3 return 0;
4}
5
6
7int foo() {
8 int *y, *x;
9 return 0;
10}
11
12int foo() {
13 int y[45], x[45];
14 return 0;
15}