Files
kotlin-fork/idea/testData/intentions/convertLambdaToReference/memberViaThis.kt
T

4 lines
100 B
Kotlin
Vendored

class Owner(val z: Int) {
fun foo(y: Int) = y + z
val x = { y: Int -><caret> this.foo(y) }
}