6 lines
86 B
C++
6 lines
86 B
C++
extern int my_idiv(int a, int b);
|
|
int my_thorw()
|
|
{
|
|
my_idiv(3, 5);
|
|
throw 20;
|
|
}
|