mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36:59 +07:00
Fixes IDEA-200021 Red code after applying 'Fix all 'Constant conditions and exception' problems in the file' with multiple case labels
10 lines
209 B
Java
10 lines
209 B
Java
// "Fix all 'Constant conditions & exceptions' problems in file" "true"
|
|
class Main {
|
|
void t() {
|
|
int i = 5;
|
|
switch(i) {
|
|
// Apply 'Fix all problems in the file'
|
|
}
|
|
}
|
|
}
|