Release coccinelle-0.2.4rc5
[bpt/coccinelle.git] / tests / match_init.res
1 int probably_works () {
2 int a = 12;
3 f(x);
4 }
5
6 int does_it_work () {
7 int y, a = 12;
8 f(x);
9 }
10
11 int should_work () {
12 a = 12;
13 f(x);
14 }
15