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