1 extern int my_idiv(int a, int b);
my_thorw()2 int my_thorw()
3 {
4     my_idiv(3, 5);
5     throw 20;
6 }
7