1 // PR c++/47476
2 // { dg-do compile { target c++11 } }
3 
4 int
foo(int a,int b)5 foo (int a, int b)
6 {
7   const bool c ((a != 0) == (b != 26));
8   return c;
9 }
10