Advertisement
Guest User

Untitled

a guest
Apr 20th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. int main() {
  2.     throw;
  3.     throw 10;
  4.  
  5.     try {
  6.         throw;
  7.         throw 10;
  8.     }
  9.     catch(...) {
  10.         throw;
  11.         throw 10;
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement