10 void test(bool a
, bool b
, bool c
, bool d
) {
12 if ((a
&& 1) || (0 && d
) || 0)
13 printf("test1 decision true\n");
18 test(true,false,true,false);
19 test(true,false,true,true);
20 test(true,true,false,false);
21 test(false,true,true,false);
23 test(true,false,false,false);