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