blob: 9ca17f23b1fe240f449a3836b8cb177889376453 [file] [log] [blame]
// PR c++/51868
// { dg-do compile { target c++11 } }
struct A {
A() {}
A(const A&) {}
A(A&&) {}
};
struct B {
A a;
int f : 1;
};
B func() {
return B();
}