Files
tubestation/tools/clang-tidy/test/performance-noexcept-move-constructor.cpp

5 lines
46 B
C++

class A {
A(A &&);
A &operator=(A &&);
};