Release coccinelle-0.1.1
[bpt/coccinelle.git] / tests / scope_problem.c
CommitLineData
34e49164
C
1void main(int i) {
2
3 int a;
4 foo(a);
5 a = 1;
6
7 if(1) {
8 int a;
9 a = 2;
10 }
11
12 a = 3;
13
14
15}