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