fork download
  1. #include <iostream>
  2. #include <memory>
  3. #include <vector>
  4.  
  5.  
  6. int main()
  7. {
  8. std::vector<int> a = { 0, 1, 2, 3};
  9. auto b = std::move(a);
  10. std::cout << a.back();
  11. }
Runtime error #stdin #stdout 0s 4240KB
stdin
Standard input is empty
stdout
Standard output is empty