#include <vector>

int main() {
	std::vector<int> v1, v2;
	std::move(v1) = v2;
	return 0;
}