test/tools/javac/multicatch/Neg02.java

Tue, 19 Oct 2010 15:02:48 -0700

author
jjg
date
Tue, 19 Oct 2010 15:02:48 -0700
changeset 722
4851ff2ffc10
parent 550
a6f2911a7c55
child 735
f2048d9c666e
permissions
-rw-r--r--

6987760: remove 308 support from JDK7
Reviewed-by: darcy, mcimadamore

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@550 23 } catch (A | B ex) { }
mcimadamore@550 24 }
mcimadamore@550 25 }

mercurial