382fe51b6d
Reviewed-by: vromero
19 lines
486 B
Java
19 lines
486 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8231827
|
|
* @summary Match which involves a cast conversion
|
|
* @compile/fail/ref=CastConversionMatch.out -XDrawDiagnostics CastConversionMatch.java
|
|
*/
|
|
|
|
public class CastConversionMatch {
|
|
public static void meth() {
|
|
Object o = 42;
|
|
if (o instanceof int s) {
|
|
System.out.println("Okay");
|
|
} else {
|
|
throw new AssertionError("broken");
|
|
}
|
|
System.out.println(">Test complete");
|
|
}
|
|
}
|