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

17 lines
440 B
Kotlin
Vendored

fun x(): Boolean { return true }
public fun foo(p: String?, r: String?, q: String?): Int {
while(true) {
q!!.length
do {
do {
p!!.length
} while (!x())
} while (r == null)
if (!x()) break
}
// Smart cast is possible everywhere
<!DEBUG_INFO_SMARTCAST!>r<!>.length
<!DEBUG_INFO_SMARTCAST!>q<!>.length
return <!DEBUG_INFO_SMARTCAST!>p<!>.length
}