mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-29 04:14:27 +00:00
8 lines
83 B
C++
8 lines
83 B
C++
|
|
struct A
|
|
{
|
|
A() = default;
|
|
A& operator=(A&&) = default;
|
|
A(A&&) = default;
|
|
};
|