aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_WHILE0.c
blob: ae0df871477f7f30b1171c24a3ea8980ba8a63ae (plain)
1
2
3
4
5
6
7
8
9
int while0(int a, int b)
{
    while(0)
    {
	a = b;
    }

    return a;
}