aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_SHADOWING.c
blob: a635ab59c72a528412a11f84e9486bd21d6cb3fc (plain)
1
2
3
4
5
6
7
8
9
int shadowing(int a, int b)
{
    {
	int a = 2;
	b = a;
    }

    return b + a;
}