test/tools/javac/multicatch/Neg03.java

Thu, 24 Feb 2011 08:40:49 -0800

author
jjh
date
Thu, 24 Feb 2011 08:40:49 -0800
changeset 892
3e30c95da3c6
parent 735
f2048d9c666e
child 2525
2eb010b6cb22
permissions
-rw-r--r--

7018753: tools/javac/varargs/warning/Warn5.java times out on slow machines
Summary: Use a single file manager for all JavacTasks
Reviewed-by: jjg, mcimadamore

     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