mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
12 lines
314 B
Kotlin
Vendored
12 lines
314 B
Kotlin
Vendored
// KT-9051: Allow smart cast for captured variables if they are not modified
|
|
|
|
fun bar(z: String?) = z
|
|
|
|
fun foo(y: String?) {
|
|
var x: String? = ""
|
|
if (x != null) {
|
|
bar(y?.let { x = null; it })<!UNSAFE_CALL!>.<!>length
|
|
<!SMARTCAST_IMPOSSIBLE!>x<!>.length // Smart cast is not possible
|
|
}
|
|
}
|