Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/safecalls/falseSecondArgument.fir.kt
T

8 lines
161 B
Kotlin
Vendored

// !WITH_NEW_INFERENCE
fun calc(x: List<String>?, y: Int?): Int {
x?.subList(y!! - 1, y)
// y!! above should not provide smart cast here
return y
}