blob: d932a9a50514c341d0de59296294277f7086d12c [file] [log] [blame]
// PR c++/41090
// { dg-do run }
// { dg-options "" }
int i;
struct C
{
C();
};
C::C() // { dg-bogus "can never be copied" "" { xfail { { *-apple-darwin* alpha*-dec-osf* } || { hppa*-*-hpux* && { ! hppa*64*-*-* } } } } }
{
static void *labelref = &&label;
goto *labelref;
label: i = 1;
}
int main()
{
C c;
return (i != 1);
}