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