mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
IDEA-67939 Smart completion completes private field from parent class inside a static inner inheritor
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
public class SmartCompletionTest {
|
||||
interface SmartCompletionType {}
|
||||
|
||||
private SmartCompletionType myNonStaticField;
|
||||
|
||||
private static void staticMethod(SmartCompletionType type) {}
|
||||
|
||||
private static class StaticInnerClass extends SmartCompletionTest {
|
||||
|
||||
private void method() {
|
||||
staticMethod(myNon<caret>);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user