Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / g++.dg / warn / Wparentheses-24.C
blob4019d3d828620cfe0b9b24b9103763aa7ac96c16
1 // { dg-do compile }
2 // { dg-options "-Wparentheses" }
4 extern int foo (int);
6 bool a, b, c;
8 bool
9 bar ()
11   c = a = b;
12   foo (0);
13   return a = b;