c9d23c3940
8317221: Implementation for javax.lang.model for Unnamed Variables & Patterns Co-authored-by: Jan Lahoda <jlahoda@openjdk.org> Co-authored-by: Maurizio Cimadamore <mcimadamore@openjdk.org> Co-authored-by: Gavin Bierman <gbierman@openjdk.org> Co-authored-by: Brian Goetz <briangoetz@openjdk.org> Co-authored-by: Joe Darcy <darcy@openjdk.org> Co-authored-by: Aggelos Biboudis <abimpoudis@openjdk.org> Reviewed-by: jlahoda, mcimadamore
24 lines
546 B
Java
24 lines
546 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8314423
|
|
* @summary Multiple patterns without unnamed variables
|
|
* @compile/fail/ref=T8314423.out -XDrawDiagnostics --release 21 T8314423.java
|
|
* @compile T8314423.java
|
|
*/
|
|
|
|
public class T8314423 {
|
|
record R1() {}
|
|
record R2() {}
|
|
|
|
static void test(Object obj) {
|
|
switch (obj) {
|
|
case R1(), R2() -> System.out.println("R1 or R2");
|
|
default -> System.out.println("other");
|
|
}
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
test(new R1());
|
|
}
|
|
}
|