foo(int i)1 void foo(int i) {
2   if (i==0)
3     return;
4   else
5     throw i;
6 }
7