7 lines
124 B
Plaintext
Vendored
7 lines
124 B
Plaintext
Vendored
// IS_APPLICABLE: true
|
|
// WITH_RUNTIME
|
|
|
|
class Owner(val z: Int) {
|
|
fun foo(y: Int) = y + z
|
|
val x = 7.let(this::foo)
|
|
} |