fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() try {
  5. throw 1;
  6. // return 0;
  7. } catch (...) {
  8. std::cout << "hello, world";
  9. return 0;
  10. }
Success #stdin #stdout 0s 4464KB
stdin
Standard input is empty
stdout
hello, world