1static _Bool foo(void) 2{ 3 unsigned char c = 1; 4 _Bool b = ~c; 5 return b; 6} 7 8/* 9 * check-name: not-cast-bool 10 * check-command: test-linearize -Wno-decl $file 11 * 12 * check-output-ignore 13 * check-output-returns: 1 14 */ 15