1 /* { dg-do compile } */
2 
main(void)3 int main (void)
4 {
5   int a = 0;
6   unsigned b = (a * 64 & 192) | 63U;
7   return 0;
8 }
9