KT-12103 Smart completion for nested SAM-adapter produces short unresolved name
#KT-12103 Fixed
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
fun foo(x: Outer.Nested) {
|
||||
}
|
||||
|
||||
fun bar() {
|
||||
foo(Outer.Nested { <caret> })
|
||||
}
|
||||
Reference in New Issue
Block a user