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