7 lines
132 B
Kotlin
Vendored
7 lines
132 B
Kotlin
Vendored
// IS_APPLICABLE: true
|
|
// WITH_RUNTIME
|
|
|
|
class Owner(val z: Int) {
|
|
fun foo(y: Int) = y + z
|
|
val x = 7.let {<caret> foo(it) }
|
|
} |