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

6 lines
124 B
Kotlin
Vendored

// IS_APPLICABLE: true
class Owner(val z: Int) {
fun foo(y: Int) = y + z
val x = { arg: Int <caret> -> foo(arg) }
}