trisquel-icecat/icecat/tools/clang-tidy/test/performance-noexcept-move-constructor.cpp

4 lines
46 B
C++

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