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

9 lines
196 B
Kotlin
Vendored

fun foo(y: Int): Int {
return y + 1
}
fun calc(x: List<String>?): Int {
// x should be non-null in arguments list
return foo(x?.get(<!DEBUG_INFO_SMARTCAST!>x<!>.size - 1)!!.length)
}