mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
15 lines
242 B
Java
15 lines
242 B
Java
// "Remove Qualifier" "true"
|
|
class E {
|
|
class Outer {
|
|
public static final int SS = 0;
|
|
class S {
|
|
public static final int SS = 0;
|
|
}
|
|
}
|
|
|
|
Outer f() {
|
|
int s = <caret>Outer.SS;
|
|
return null;
|
|
}
|
|
}
|