/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/langtools/tools/javac/T8314423.java
23 строки
546 B
Aggelos Biboudis
8315532: Compiler Implementation for Unnamed Variables & Patterns
30 окт 2023, 13:28
30 окт 2023, 13:28
c9d23c3
Код
Авторство
О чём код?
/* * @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()); } }