mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
GitOrigin-RevId: 8bc49191864fea56a3925f113892323f1cc7c58a
10 lines
187 B
Java
10 lines
187 B
Java
import org.jetbrains.annotations.*;
|
|
|
|
class Test {
|
|
void test(int x) {
|
|
Integer y = null;
|
|
switch (x) {
|
|
case <error descr="Constant expression required">y</error>:
|
|
}
|
|
}
|
|
} |