fork(2) download
#include <vector>

int main() {
	std::vector<int> v1, v2;
	std::move(v1) = v2;
	return 0;
}
Success #stdin #stdout 0s 3452KB
stdin
Standard input is empty
stdout
Standard output is empty