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

5 lines
103 B
Kotlin
Vendored

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