1// Build don't link:
2// Origin: Mark Mitchell <mark@codesourcery.com>
3
4struct S
5{
6  S ();
7  ~S ();
8};
9
10void f ()
11{
12  {
13    S s1; // ERROR - skips initialization
14
15  t:	  // ERROR - jump to label
16    S s2;
17    ;
18  }
19
20  goto t; // ERROR - from here
21}
22