java completion: qualify calls to outer class methods when needed (IDEA-144816, IDEA-151237)

This commit is contained in:
peter
2016-02-11 12:39:17 +01:00
parent a72816ad08
commit 047e6d7ff2
9 changed files with 103 additions and 21 deletions
@@ -0,0 +1,10 @@
class A {
void foo(int x){}
class Inner {
void foo(){}
void test() {
fo<caret>
}
}
}