mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-25 06:01:39 +07:00
b3d096b7fc
GitOrigin-RevId: 5be5a1c196902431a582768fbc461d0d09b14aac
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:
|
|
}
|
|
}
|
|
} |