diff -r 000000000000 -r 959103a6100f test/tools/javac/multicatch/Neg06.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/tools/javac/multicatch/Neg06.java Wed Apr 27 01:34:52 2016 +0800 @@ -0,0 +1,16 @@ +/* + * @test /nodynamiccopyright/ + * @bug 7002070 + * + * @summary If catch clause has an incompatible type, error pointer points to first exception type in list + * @author mcimadamore + * @compile/fail/ref=Neg06.out -XDrawDiagnostics Neg06.java + * + */ + +class Neg06 { + void test() { + try { } + catch (String | Integer s) {} + } +}