You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Issue155.java 414B

12345678910111213141516171819202122
  1. package test5;
  2. public class Issue155 {
  3. public void bar() {}
  4. public void foo() throws Throwable {
  5. try {
  6. bar();
  7. } catch (java.lang.IllegalArgumentException e) {
  8. bar();
  9. }
  10. }
  11. public int test() throws Throwable {
  12. foo();
  13. return 1;
  14. }
  15. public static void main(String[] args) throws Throwable {
  16. new Issue155().foo();
  17. }
  18. }