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
Merge reload-branch up to revision 101000
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
goto2.C
blob
07adbb95dcfd521b8149c971f4c92634733a1f7a
1
// { dg-do assemble }
2
// { dg-options "-Wunused" }
3
// Origin: Mark Mitchell <mark@codesourcery.com>
4
5
struct S
6
{
7
S ();
8
~S ();
9
};
10
11
void f ()
12
{
13
{
14
S s1;
15
int j; // { dg-warning "" } unused
16
17
t: // { dg-warning "" } unused
18
S s2;
19
}
20
}