KT-12103 Smart completion for nested SAM-adapter produces short unresolved name

#KT-12103 Fixed
This commit is contained in:
Valentin Kipyatkov
2016-04-28 21:52:12 +03:00
parent cd6b709ef5
commit 0769c5453f
11 changed files with 88 additions and 63 deletions
@@ -0,0 +1,6 @@
fun foo(x: Outer.Nested) {
}
fun bar() {
foo(<caret>)
}
@@ -0,0 +1,5 @@
public class Outer {
public interface Nested {
void foo();
}
}
@@ -0,0 +1,6 @@
fun foo(x: Outer.Nested) {
}
fun bar() {
foo(Outer.Nested { <caret> })
}