blob: 2ea84281365a5dc1aa7b1f41e0643c03964bdb65 [file] [log] [blame]
// "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) }