blob: 70f251d75f01c01ba6b34ea17c9931a7f0d81792 [file] [log] [blame]
// PR c++/41090
// { dg-do run }
// { dg-options "" }
int i;
struct C
{
C();
};
C::C() // { dg-bogus "can never be copied" }
{
static void *labelref = &&label;
goto *labelref;
label: i = 1;
}
int main()
{
C c;
return (i != 1);
}