DEBSOURCES
Skip Quicknav
sources / coccinelle / 1.3.0.deb-1 / tests / scope_problem.c
123456789101112131415
void main(int i) { int a; foo(a); a = 1; if(1) { int a; a = 2; } a = 3; }