• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <exception>
2 
3 void
throws_int()4 throws_int ()
5 {
6     throw 5;
7 }
8 
9 int
main()10 main ()
11 {
12     throws_int();
13 }
14