blob: ccc05f8360c107d200b76e667ef742df3df791ec [file] [log] [blame]
/* { dg-do compile } */
struct s { ~s() { s(); } };
int f()
{
M:
s o = s();
f();
f();
L:
goto *(f() ? &&L : &&M);
return 0;
}