Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/variables/whileTrue.kt
T
2015-10-14 20:39:35 +03:00

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