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