14 lines
350 B
Kotlin
Vendored
14 lines
350 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
fun x(): Boolean { return true }
|
|
|
|
public fun foo(pp: Any): Int {
|
|
var p = pp
|
|
while(true) {
|
|
(p as String).length
|
|
if (x()) break
|
|
p = 42
|
|
}
|
|
// Smart cast is NOT possible here
|
|
// (we could provide it but p = 42 makes it difficult to understand)
|
|
return p.<!UNRESOLVED_REFERENCE!>length<!>()
|
|
} |