8sa1-gcc/gcc/testsuite/g++.old-deja/g++.other/goto1.C

22 lines
250 B
C++
Raw Normal View History

// 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
}