fork(2) download
  1. #include <vector>
  2.  
  3. int main() {
  4. std::vector<int> v1, v2;
  5. std::move(v1) = v2;
  6. return 0;
  7. }
Success #stdin #stdout 0s 3452KB
stdin
Standard input is empty
stdout
Standard output is empty