Files
2015-10-07 08:46:34 +03:00

7 lines
194 B
Kotlin
Vendored

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