mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
do not search for outer classes when inner class with the same name present
This commit is contained in:
+13
@@ -68,3 +68,16 @@ class C extends D implements A
|
||||
interface F2 extends A.B1 { }
|
||||
|
||||
}
|
||||
|
||||
|
||||
class AO {}
|
||||
class BAO {
|
||||
AO bar = new AO();
|
||||
{
|
||||
bar.foo();
|
||||
}
|
||||
private class AO {
|
||||
void foo(){}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user