(InputStream in)
| 6 | |
| 7 | public class ExceptionSetMerge { |
| 8 | public void f(InputStream in) { |
| 9 | Object o = new Object[0]; |
| 10 | |
| 11 | try { |
| 12 | System.out.println(in.read()); |
| 13 | } catch (IOException e) { |
| 14 | o = e; |
| 15 | } |
| 16 | |
| 17 | System.out.println(o.hashCode()); |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | // vim:ts=4 |