Coccinelle release 0.2.5-rc3
[bpt/coccinelle.git] / tests / pb_params_iso.res
1
2 int f(bool a, int i, char j, bool b) {
3 i++;
4 }
5
6 int f(int i, char j, bool b) {
7 i++;
8 }
9
10 int f(bool a, int i, char j) {
11 i++;
12 }
13
14 int f(int i, char j) {
15 i++;
16 }
17