IDEA-191883 "Tab" completion doesn't work as expected for inner classes

This commit is contained in:
peter
2018-05-16 18:35:13 +02:00
parent 3679c2a3a4
commit 987368ccfd
7 changed files with 45 additions and 25 deletions
@@ -0,0 +1,6 @@
class Scratch {
interface Some {}
public static class Inner implements Some {}
Some f = new Scratc<caret>h.z();
}
@@ -0,0 +1,6 @@
class Scratch {
interface Some {}
public static class Inner implements Some {}
Some f = new Scratch.Inner()<caret>;
}