URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [warn/] [Wparentheses-3.C] - Rev 693
Compare with Previous | Blame | View Log
// Test that -Wparentheses does not give bogus warnings in the
// presence of templates. Bug 17041.
// { dg-do compile }
// { dg-options "-Wparentheses" }
template<int> struct A
{
int i;
A() { if ((i = 0)) ; }
};
A<0> a;