blob: 0839ee5e1427097bb758dc1aae1b6fc9990d3c45 [file] [log] [blame]
// Build don't link:
// Origin: Mark Mitchell <mark@codesourcery.com>
struct S
{
S ();
~S ();
};
void f ()
{
{
S s1; // ERROR - skips initialization
t: // ERROR - jump to label
S s2;
;
}
goto t; // ERROR - from here
}