FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / goto2.C
blob2b95273cd8b5e2563d3d31c4a9dff158eac92e31
1 // Build don't link:
2 // Origin: Mark Mitchell <mark@codesourcery.com>
3 // Special g++ Options: -Wunused
5 struct S
7   S ();
8   ~S ();
9 };
11 void f ()
13   {
14     S s1;
15     int j; // WARNING - unused
16     
17   t:       // WARNING - unused
18     S s2;
19   }