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

5 lines
79 B
Kotlin
Vendored

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