Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / warn / Wparentheses-3.C
blob8781953b64aca086aa902b350ece8012e905415b
1 // Test that -Wparentheses does not give bogus warnings in the
2 // presence of templates.  Bug 17041.
4 // { dg-do compile }
5 // { dg-options "-Wparentheses" }
7 template<int> struct A
9     int i;
10     A() { if ((i = 0)) ; }
13 A<0> a;