11 lines
170 B
Kotlin
Vendored
11 lines
170 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// IS_APPLICABLE: true
|
|
|
|
fun foo() {
|
|
val foo: String? = null
|
|
foo?.toString()?.let {
|
|
it.to("")<caret>
|
|
}?.let {
|
|
it.to("")
|
|
}
|
|
} |