rt_gccstream/gcc/testsuite/g++.old-deja/g++.other/goto2.C

21 lines
259 B
C

// { dg-do assemble }
// { dg-options "-Wunused" }
// Origin: Mark Mitchell <mark@codesourcery.com>
struct S
{
S ();
~S ();
};
void f ()
{
{
S s1;
int j; // { dg-warning "" } unused
t: // { dg-warning "" } unused
S s2;
}
}