aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_NOT_driver.c
blob: 1069052c916f381103194ee91d04a99c625db464 (plain)
1
2
3
4
5
6
int not(int);

int main()
{
    return !( 5 == (not(0) * 5 + not(4)) );
}