11 lines
302 B
Kotlin
Vendored
11 lines
302 B
Kotlin
Vendored
public fun foo(x: String?): Int {
|
|
while (true) {
|
|
// After the check, smart cast should work
|
|
val y = if (x == null) break else x
|
|
// y is not null in both branches
|
|
y.length
|
|
}
|
|
// x is null because of the break
|
|
return x.<!INAPPLICABLE_CANDIDATE!>length<!>
|
|
}
|