mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
- not show used patterns - prioritize for rules - support smart mode GitOrigin-RevId: 647d1c3cbe51d46cf97c7c2ac95e9f0fd0dd4220
11 lines
127 B
Java
11 lines
127 B
Java
|
|
class Main {
|
|
|
|
enum E{A, B}
|
|
void f(E o) {
|
|
switch (o) {
|
|
default -> System.out.println();
|
|
<caret>
|
|
}
|
|
}
|
|
} |