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

5 lines
106 B
Kotlin
Vendored

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