mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
12 lines
177 B
Java
12 lines
177 B
Java
// "Create constant field 'constant'" "true-preview"
|
|
|
|
class A {
|
|
|
|
private static final int constant = ;
|
|
|
|
void x(int i) {
|
|
switch (i) {
|
|
case constant:
|
|
}
|
|
}
|
|
} |