mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
qualify static const/method: static members from default packages should be visible for call inside default package
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
// "Qualify static call..." "true"
|
||||
class Test {
|
||||
void m() {
|
||||
staticMet<caret>hod();
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
// "Qualify static call..." "true"
|
||||
package org.intellij;
|
||||
|
||||
class Test {
|
||||
void m() {
|
||||
staticMet<caret>hod();
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
// "Import static method 'java.lang.Integer.parseInt'" "true"
|
||||
class Test {
|
||||
void m() {
|
||||
staticMet<caret>hod();
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
// "Import static method 'java.lang.Integer.parseInt'" "true"
|
||||
package org.intellij;
|
||||
|
||||
class Test {
|
||||
void m() {
|
||||
staticMet<caret>hod();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user