test/langtools/tools/javac/multicatch/Pos06.java
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 7203 langtools/test/tools/javac/multicatch/Pos06.java@1153590927f7
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse

/*
 * @test /nodynamiccopyright/
 * @bug 6993963
 *
 * @summary Project Coin: Use precise exception analysis for effectively final catch parameters
 * @author mcimadamore
 * @compile Pos06.java
 *
 */

class Pos06 {
    static class A extends Exception {}
    static class B extends Exception {}

    void m() {
        try {
            if (true) {
                throw new A();
            }
            else {
                throw new B();
            }
        } catch (A | B ex) {
            System.out.println(ex);
        }
    }
}