1 /* PR c/27273 */
2 /* { dg-do compile } */
3 /* { dg-options "-Woverflow" } */
4
rx_async(unsigned char p)5 unsigned char rx_async(unsigned char p) {
6 return p & 512; /* { dg-warning "overflow in conversion from .int. to .unsigned char. changes value" } */
7 }
8