(String[] args)
| 24 | } |
| 25 | |
| 26 | public static void main(String[] args) { |
| 27 | try { |
| 28 | x(0); |
| 29 | } catch (Exception e1) { |
| 30 | // nothing here - should be flagged |
| 31 | } finally { |
| 32 | try { |
| 33 | x(1); |
| 34 | } catch (Exception e2) { |
| 35 | // nothing here - should also be flagged |
| 36 | } |
| 37 | } |
| 38 | } |
| 39 | } |