Files
kotlin-fork/idea/idea-completion/testData/basic/common/CallLocalLambda.kt
T

12 lines
171 B
Kotlin
Vendored

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