10 lines
146 B
Kotlin
Vendored
10 lines
146 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// IS_APPLICABLE: false
|
|
|
|
fun foo() {
|
|
val foo: String? = null
|
|
foo?.let {
|
|
it.length<caret>
|
|
it.length
|
|
}
|
|
} |