Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
pr8715.C
blob: fccb25aa7e5dba56f32f43b0e5f9120ff9a7aad5 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-Wsign-compare" } */
int
foo
()
{
unsigned
char
b
=
'1'
;
bool
x
=
~
b
;
/* { dg-warning "promoted bitwise complement of an unsigned value is always nonzero" } */
return
0
;
}