blob: 6f97b0671542978532ad27a2669afb140a94eb21 [file] [log] [blame]
// { dg-do run { target c++11 } }
int c;
struct A
{
A() { }
A(const A&) { }
};
A f() { ++c; return A(); }
struct B
{
A a = f();
};
int main()
{
B b1, b2;
if (c != 2)
__builtin_abort();
}