1 /* { dg-do compile } */
2 
3 enum { a = 1 } b;
c()4 int c()
5 {
6   int d = a;
7   for (; d;)
8     d &= d - 1;
9   return b;
10 }
11