Files
kotlin-fork/idea/testData/intentions/convertReferenceToLambda/member.kt.after
T

4 lines
93 B
Plaintext
Vendored

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