mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
11 lines
259 B
Kotlin
Vendored
11 lines
259 B
Kotlin
Vendored
fun foo(y: String?) {
|
|
var x: String? = ""
|
|
if (x != null) {
|
|
with(y?.let { x = null; it }) {
|
|
this<!UNSAFE_CALL!>.<!>length
|
|
<!SMARTCAST_IMPOSSIBLE!>x<!>.length
|
|
}
|
|
<!SMARTCAST_IMPOSSIBLE!>x<!>.length
|
|
}
|
|
}
|