mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-13 09:19:13 +07:00
inline: check accessibility according to the file scope (IDEA-152181)
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
class Test {
|
||||
class A {
|
||||
private Integer i = 0;
|
||||
|
||||
void foo() {
|
||||
i.toString();
|
||||
}
|
||||
}
|
||||
|
||||
class B extends A {
|
||||
void bar(A a) {
|
||||
a.fo<caret>o();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user