4 lines
100 B
Kotlin
Vendored
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) }
|
|
} |