repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update ChangeLog and version files for release
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wunused-var-9.C
blob
cb422f45cbb17b2784d07f276c8ba1145bb056cd
1
/* PR c++/44062 */
2
/* { dg-do compile } */
3
/* { dg-options "-Wunused" } */
4
5
void
6
f ()
7
{
8
int i = 4;
9
static_cast <void> (i);
10
int j;
11
j = 5;
12
static_cast <void> (j);
13
}