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

7 lines
257 B
Kotlin
Vendored

fun calc(x: List<String>?): Int {
// x should be non-null in arguments list, including inner call
x?.get(<!DEBUG_INFO_SMARTCAST!>x<!>.get(<!DEBUG_INFO_SMARTCAST!>x<!>.size - 1).length)
// but not also here!
return x<!UNSAFE_CALL!>.<!>size
}