Files
kotlin-fork/idea/testData/completion/basic/multifile/InImportedFunctionLiteralParameter.kt
T
2014-04-02 13:37:18 +04:00

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