1 // PR c++/69211
2 // { dg-do compile }
3 
4 int a, b;
5 
6 int
foo()7 foo ()
8 {
9   return (a & 5UL | (b = 4, 4L)) > 4;
10 }
11