mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
16 lines
344 B
Java
16 lines
344 B
Java
/*
|
|
* @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) {}
|
|
}
|
|
}
|