mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
10 lines
267 B
Plaintext
10 lines
267 B
Plaintext
public class RenameCollisions {
|
|
class InnerClass {
|
|
public static final int INNER_STATIC_FIELD = 13;
|
|
public void instanceContext(int param) {
|
|
int <caret>INNER_STATIC_FIELD = 0;
|
|
int var1 = INNER_STATIC_FIELD + param + InnerClass.INNER_STATIC_FIELD;
|
|
}
|
|
}
|
|
}
|