fork download
  1. #include <iostream>
  2. #include <exception>
  3.  
  4. class bad
  5. {
  6. public:
  7. bad() {}
  8. ~bad() { throw std::exception(); }
  9. };
  10.  
  11.  
  12. int main()
  13. {
  14. bad b;
  15. bad b2;
  16. }
Runtime error #stdin #stdout 0.01s 2808KB
stdin
Standard input is empty
stdout
Standard output is empty