rt_gccstream/gcc/testsuite/gcc.dg/pr8715.c

14 lines
223 B
C

/* { dg-do compile } */
/* { dg-options "-Wsign-compare -std=c99" } */
#include <stdbool.h>
int foo()
{
unsigned char b = '1';
bool x = ~b; /* { dg-warning "promoted ~unsigned is always non-zero" } */
return 0;
}