blob: 232e484356e22ccc75f4238bcd566f737522a114 [file] [log] [blame]
// PR c++/57211
// { dg-do compile { target c++11 } }
// { dg-options "-Wunused-parameter" }
template <class T> T&& move(T&);
struct A
{
struct B
{
B& operator=(B&&);
};
B f;
A& operator=(A&& p) = default;
};
int main()
{
A a;
A b;
b = move(a);
}