mirror of
https://github.com/Kitware/CMake.git
synced 2025-06-30 07:38:07 +08:00
8 lines
83 B
C++
8 lines
83 B
C++
|
|
struct A
|
|
{
|
|
A() = default;
|
|
A& operator=(A&&) = default;
|
|
A(A&&) = default;
|
|
};
|