test/tools/javac/multicatch/Neg03.java

Thu, 21 Feb 2013 15:26:46 +0000

author
mcimadamore
date
Thu, 21 Feb 2013 15:26:46 +0000
changeset 1599
9f0ec00514b6
parent 735
f2048d9c666e
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8007461: Regression: bad overload resolution when inner class and outer class have method with same name
Summary: Fix regression in varargs method resolution introduced by bad refactoring
Reviewed-by: jjg

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @bug 6943289
     4  *
     5  * @summary Project Coin: Improved Exception Handling for Java (aka 'multicatch')
     6  * @author mcimadamore
     7  * @compile/fail/ref=Neg03.out -XDrawDiagnostics Neg03.java
     8  *
     9  */
    11 class Neg03 {
    13     static class A extends Exception { public void m() {}; public Object f;}
    14     static class B1 extends A {}
    15     static class B2 extends A {}
    17     void m() throws B1, B2 {
    18         try {
    19             if (true) {
    20                 throw new B1();
    21             }
    22             else {
    23                 throw new B2();
    24             }
    25         } catch (Exception ex) {
    26             ex = new B2(); //effectively final analysis disabled!
    27             throw ex;
    28         }
    29     }
    30 }

mercurial