mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 06:20:54 +07:00
for Introduce Constant refactoring. Also fixes IDEABKL-3269 when introducing a compile-time constant from an expression. GitOrigin-RevId: 169e7ee8e14306a265948537b62746d9a26c0298
12 lines
197 B
Java
12 lines
197 B
Java
class X {
|
|
|
|
public static final Object xxx = new Object();
|
|
|
|
void x() {
|
|
new Object() {
|
|
void x() {
|
|
System.out.println(xxx);
|
|
}
|
|
};
|
|
}
|
|
} |