/* expect+2: error: right operand of '&&' must be bool, not 'char' [332] */
/* expect+1: error: parameter 1 expects '_Bool', gets passed 'int' [334] */
test(b && c);
/* expect+2: error: right operand of '&&' must be bool, not 'int' [332] */
/* expect+1: error: parameter 1 expects '_Bool', gets passed 'int' [334] */
test(b && i);