mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
more java tests moved to community
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
// "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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user