summaryrefslogtreecommitdiffstats
path: root/tools/clang-tidy/test/performance-noexcept-move-constructor.cpp
blob: 8b4900b00d62dbc71610cc11415af6437cd0c5dd (plain)
1
2
3
4
class A {
  A(A &&);
  A &operator=(A &&);
};