Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/loops/whileInCondition.fir.kt
T

6 lines
100 B
Kotlin
Vendored

fun foo(s: String?): Int {
while (s!!.length > 0) {
s.length
}
return s.length
}