blob: f8351d3c9c1cf2742364d068aaac472d3ff7154e [file] [log] [blame]
// FIR_IDENTICAL
// KT-9051: Allow smart cast for captured variables if they are not modified
fun foo(y: String?) {
var x: String? = null
y?.let { x = it }
x<!UNSAFE_CALL!>.<!>length // Smart cast is not possible
}