fune/tools/clang-tidy/test/modernize-shrink-to-fit.cpp
Andi-Bogdan Postelnicu 0374067886 Bug 1432410 - Add tests in tree to make sure we don't regress with clang-tidy on static-analisys. Tests wrote in part by :sylvestre. r=gps
MozReview-Commit-ID: IWxzKfWNIHG

--HG--
extra : rebase_source : d2bd65c66541e5d6e8d5cc721b117f0a3e7716e8
2018-05-03 20:06:16 +03:00

10 lines
160 B
C++

#include "structures.h"
void f() {
std::vector<int> v;
std::vector<int>(v).swap(v);
std::vector<int> &vref = v;
std::vector<int>(vref).swap(vref);
}