Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/safecalls/longChain.kt
T
2015-10-07 08:46:34 +03:00

7 lines
253 B
Kotlin
Vendored

fun calc(x: List<String>?) {
// x should be non-null in arguments list, despite of a chain
x?.subList(0, <!DEBUG_INFO_SMARTCAST!>x<!>.size)?.
subList(0, <!DEBUG_INFO_SMARTCAST!>x<!>.size)?.
get(<!DEBUG_INFO_SMARTCAST!>x<!>.size)
}