5368e8cef3
during lazy resolve Fix for "KT-3096 No completion in function literal" and "KT-3102 No completion/auto-import for an extension method" #KT-3102 Fixed #KT-3096 Fixed
11 lines
198 B
Kotlin
11 lines
198 B
Kotlin
package first
|
|
|
|
// For KT-3096 No completion in function literal
|
|
|
|
import second.someWithLiteral
|
|
|
|
fun test() {
|
|
someWithLiteral({file -> file.testFu<caret>})
|
|
}
|
|
|
|
// EXIST: testFunction1, testFunction2 |