mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
unresolved qualifiers in ref expressions chain (follow IDEA-CR-24382)
This commit is contained in:
+1
-1
@@ -15,7 +15,7 @@ class E {
|
||||
class opopo {
|
||||
public void main(String[] args) {
|
||||
String java = "bla";
|
||||
java.<error descr="Cannot resolve symbol 'lang'">lang</error>.String.valueOf("");
|
||||
<error descr="Expected class or package">java.lang</error>.String.valueOf("");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -11,7 +11,7 @@ class ImmutableSet<T> {
|
||||
}
|
||||
|
||||
public class Test {
|
||||
private static final Set<String> S = com.google.common.collect.ImmutableSet.of("foo", "bar", "baz");
|
||||
private static final Set<String> S = ImmutableSet.of("foo", "bar", "baz");
|
||||
|
||||
void testOr(String s) {
|
||||
if(S.contains(s)) {
|
||||
|
||||
Reference in New Issue
Block a user