aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_NESTEQU.c
blob: 698784fc05bc0bd50035eaa2154578b0cfc68948 (plain)
1
2
3
4
5
6
7
int nestequ(int a)
{
    int b = 4;
    int c;
    c = b = a;
    return b;
}