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