Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/loops/whileNull.fir.kt
T
2020-02-03 16:45:20 +03:00

5 lines
76 B
Kotlin
Vendored

fun foo(s: String?): Int {
while (s==null) {
}
return s.length
}