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
9 lines
190 B
Kotlin
9 lines
190 B
Kotlin
package second
|
|
|
|
class Some {
|
|
// Two function to prevent automatic insert
|
|
fun testFunction1() : Int = 12
|
|
fun testFunction2() : Int = 12
|
|
}
|
|
|
|
fun someWithLiteral(body: (Some) -> Unit) = 12 |