Files
tubestation/tools/clang-tidy/test/clang-analyzer-cplusplus.Move.cpp

11 lines
133 B
C++

class P {};
void bar(P) {}
void foo(int n) {
P x;
for (int i = n; i >= 0; --i) {
bar(static_cast<P&&>(x));
}
}