2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / goto2.C
blob07adbb95dcfd521b8149c971f4c92634733a1f7a
1 // { dg-do assemble  }
2 // { dg-options "-Wunused" }
3 // Origin: Mark Mitchell <mark@codesourcery.com>
5 struct S
7   S ();
8   ~S ();
9 };
11 void f ()
13   {
14     S s1;
15     int j; // { dg-warning "" } unused
16     
17   t:       // { dg-warning "" } unused
18     S s2;
19   }