blob: a4963c4d13215cdc0231ca424b7be464f56594c2 [file] [log] [blame]
// DR 1402
// { dg-do compile { target c++11 } }
template <class T> T&& move(T& t);
struct A
{
A(const A&);
};
struct B
{
B(B&&);
};
struct C
{
A a;
B b;
};
extern C c1;
C c2(move(c1));