8 lines
83 B
C++
8 lines
83 B
C++
|
|
struct A
|
|
{
|
|
A() = default;
|
|
A& operator=(A&&) = default;
|
|
A(A&&) = default;
|
|
};
|