Files
kotlin-fork/idea/testData/completion/basic/common/CallLocalLambda.kt
T
2013-04-11 20:00:29 +04:00

11 lines
155 B
Kotlin

class TestClass {
public fun testMethod() {
}
}
fun testFun() {
val lambda = {() -> TestClass() }
lambda().<caret>
}
// EXIST: testMethod