blob: 05cd5886c4c77fdd9d818119ae576382ddf21b09 [file] [log] [blame]
// WITH_RUNTIME
// IS_APPLICABLE: true
fun foo() {
val foo: String? = null
foo?.toString()?.to("")?.let {
it.to("")
}
}