fork(2) download
  1. #include <iostream>
  2. #include <memory>
  3. #include <exception>
  4. using namespace std;
  5.  
  6. int randomint() {
  7. throw std::runtime_error("whoops");
  8.  
  9. return 4;
  10. }
  11.  
  12. void byval(std::unique_ptr<int> x, int y) {
  13. std::cout << *x + y << "\n";
  14. }
  15.  
  16. int main() {
  17.  
  18. auto n = std::make_unique<int>(5);
  19. try {
  20. byval(std::move(n), randomint());
  21. } catch (std::exception& e) {
  22. std::cout << e.what() << "\n";
  23. }
  24.  
  25. if (n) std::cout << "intact: " << *n << "\n";
  26. return 0;
  27. }
Success #stdin #stdout 0s 3412KB
stdin
Standard input is empty
stdout
whoops
intact: 5