mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 17:22:51 +07:00
c8e763e188
IDEA-272573 GitOrigin-RevId: 37262fbd3543791b41513f6f1bea1970c8d3183c
13 lines
233 B
Java
13 lines
233 B
Java
// "Remove switch branch 'Day dd && true'" "true"
|
|
enum Day {
|
|
MONDAY, TUESDAY, WEDNESDAY
|
|
}
|
|
|
|
class Test {
|
|
int foo(Day d) {
|
|
switch (d) {
|
|
case default:
|
|
System.out.println(13);
|
|
}
|
|
}
|
|
} |