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

8 lines
172 B
Kotlin
Vendored

fun foo(y: Int) = y
fun calc(x: List<String>?): Int {
foo(x!!.size)
// Here we should have smart cast because of x!!, despite of KT-7204 fixed
return x.size
}