repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wunused-6.C
blob
198fe9698749806e2f708a5d3f64582c35ace9c0
1
/* PR middle-end/14203 */
2
/* { dg-do compile } */
3
/* { dg-options "-Wall" } */
4
5
void foo()
6
{
7
if (false)
8
if (int i=0) // { dg-warning "unused" }
9
int j=0; // { dg-warning "unused" }
10
}
11