blob: 5f375de264d4d5e4aa0d71a20d7b8744484deb67 [file] [log] [blame]
// WITH_RUNTIME
// IS_APPLICABLE: false
fun foo() {
val foo: String? = null
foo?.let {
it.length<caret>
it.length
}
}