repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wparentheses-3.C
blob
8781953b64aca086aa902b350ece8012e905415b
1
// Test that -Wparentheses does not give bogus warnings in the
2
// presence of templates. Bug 17041.
3
4
// { dg-do compile }
5
// { dg-options "-Wparentheses" }
6
7
template<int> struct A
8
{
9
int i;
10
A() { if ((i = 0)) ; }
11
};
12
13
A<0> a;