b7fd41844d
(cherry picked from commit 7044348)
8 lines
157 B
Plaintext
Vendored
8 lines
157 B
Plaintext
Vendored
// "Wrap with '?.let { ... }' call" "true"
|
|
// WITH_RUNTIME
|
|
|
|
object Obj {
|
|
fun foo(x: Int) = x
|
|
}
|
|
val arg: Int? = null
|
|
val argFoo = arg?.let { Obj.foo(it) } |