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