Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.other / goto1.C
blob0dcc8bc00240960cb950f70dff40f915e1347e00
1 // { dg-do assemble  }
2 // Origin: Mark Mitchell <mark@codesourcery.com>
4 struct S
6   S ();
7   ~S ();
8 };
10 void f ()
12   {
13     S s1; // { dg-error "" } skips initialization
14   
15   t:      // { dg-error "" } jump to label
16     S s2;
17     ;
18   }
20   goto t; // { dg-error "" } from here