4 lines
93 B
Plaintext
Vendored
4 lines
93 B
Plaintext
Vendored
class Owner(val z: Int) {
|
|
fun foo(y: Int) = y + z
|
|
val x = { y: Int -> this.foo(y) }
|
|
} |