test/tools/javac/multicatch/Neg03.java

Thu, 31 Aug 2017 15:17:03 +0800

author
aoqi
date
Thu, 31 Aug 2017 15:17:03 +0800
changeset 2525
2eb010b6cb22
parent 735
f2048d9c666e
parent 0
959103a6100f
permissions
-rw-r--r--

merge

     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