fork download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5. try {
  6. throw 1234;
  7. }
  8. catch (int& e) {
  9. std::cout << e;
  10. }
  11. }
Success #stdin #stdout 0.02s 2856KB
stdin
Standard input is empty
stdout
1234