773N/A/*
773N/A * @test /nodynamiccopyright/
773N/A * @bug 7002070
773N/A *
773N/A * @summary If catch clause has an incompatible type, error pointer points to first exception type in list
773N/A * @author mcimadamore
773N/A * @compile/fail/ref=Neg06.out -XDrawDiagnostics Neg06.java
773N/A *
773N/A */
773N/A
773N/Aclass Neg06 {
773N/A void test() {
773N/A try { }
773N/A catch (String | Integer s) {}
773N/A }
773N/A}