(int i)
| 116 | } |
| 117 | |
| 118 | int nestedCatch(int i) { |
| 119 | try { |
| 120 | toString(); |
| 121 | } catch (NullPointerException npe) { |
| 122 | try { |
| 123 | int x = i / i; |
| 124 | } catch (ArithmeticException ae) { |
| 125 | return i; |
| 126 | } |
| 127 | } |
| 128 | return 0; |
| 129 | } |
| 130 | |
| 131 | static Object use(Object x) { |
| 132 | return x; |