mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +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;
|
||||
}
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
// "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;
|
||||
}
|
||||
}
|
||||
+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>f().S.SS;
|
||||
// int s1 = <error descr="Expected class or package">this</error>.Outer.S.SS;
|
||||
int s2 = Outer.S.SS;
|
||||
return null;
|
||||
}
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
// "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 = this<caret>.Outer.SS;
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user