test/tools/javac/multicatch/Neg02.java

Fri, 27 May 2011 15:02:39 -0700

author
jeff
date
Fri, 27 May 2011 15:02:39 -0700
changeset 1016
6211df69f7e0
parent 735
f2048d9c666e
child 2525
2eb010b6cb22
permissions
-rw-r--r--

7045697: JDK7 THIRD PARTY README update
Reviewed-by: lana

mcimadamore@550 1 /*
mcimadamore@550 2 * @test /nodynamiccopyright/
mcimadamore@550 3 * @bug 6943289
mcimadamore@550 4 *
mcimadamore@550 5 * @summary Project Coin: Improved Exception Handling for Java (aka 'multicatch')
mcimadamore@550 6 * @author mcimadamore
mcimadamore@550 7 * @compile/fail/ref=Neg02.out -XDrawDiagnostics Neg02.java
mcimadamore@550 8 *
mcimadamore@550 9 */
mcimadamore@550 10
mcimadamore@550 11 class Neg02 {
mcimadamore@550 12 static class A extends Exception {}
mcimadamore@550 13 static class B extends Exception {}
mcimadamore@550 14
mcimadamore@550 15 void m() {
mcimadamore@550 16 try {
mcimadamore@550 17 if (true) {
mcimadamore@550 18 throw new A();
mcimadamore@550 19 }
mcimadamore@550 20 else {
mcimadamore@550 21 throw new B();
mcimadamore@550 22 }
mcimadamore@735 23 } catch (final A | B ex) {
mcimadamore@735 24 ex = new B();
mcimadamore@735 25 }
mcimadamore@550 26 }
mcimadamore@550 27 }

mercurial