5 lines
103 B
Kotlin
Vendored
5 lines
103 B
Kotlin
Vendored
fun foo(s: String?): Int {
|
|
while (s==null) {
|
|
}
|
|
return <!DEBUG_INFO_SMARTCAST!>s<!>.length
|
|
} |