eaa80ad08c
8300545: Compiler Implementation for Record Patterns Co-authored-by: Aggelos Biboudis <abimpoudis@openjdk.org> Reviewed-by: vromero, mcimadamore
30 lines
922 B
Java
30 lines
922 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8231827
|
|
* @summary Testing pattern matching against the null constant
|
|
* @run main NullsInPatterns
|
|
*/
|
|
import java.util.List;
|
|
|
|
public class NullsInPatterns {
|
|
|
|
public static void main(String... args) {
|
|
if (null instanceof List t) {
|
|
throw new AssertionError("broken");
|
|
} else {
|
|
System.out.println("null does not match List type pattern");
|
|
}
|
|
//reifiable types not allowed in type test patterns in instanceof:
|
|
// if (null instanceof List<Integer> l) {
|
|
// throw new AssertionError("broken");
|
|
// } else {
|
|
// System.out.println("null does not match List<Integer> type pattern");
|
|
// }
|
|
if (null instanceof List<?> l) {
|
|
throw new AssertionError("broken");
|
|
} else {
|
|
System.out.println("null does not match List<?> type pattern");
|
|
}
|
|
}
|
|
}
|