jdk
1/*
2* @test /nodynamiccopyright/
3* @bug 8314216
4* @summary Multiple patterns without unnamed variables
5* @compile/fail/ref=T8314216.out -XDrawDiagnostics T8314216.java
6*/
7
8public class T8314216 {9enum X {A, B}10
11void test(Object obj) {12switch (obj) {13case X.A, Integer _ -> System.out.println("A or Integer");14case String _, X.B -> System.out.println("B or String");15default -> System.out.println("other");16}17}18}
19