Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/variables/whileTrue.fir.kt
T

13 lines
333 B
Kotlin
Vendored

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<!>()
}