Files
2015-10-14 20:39:35 +03:00

7 lines
161 B
Kotlin
Vendored

fun String.foo(arg: Int) = this[arg]
fun calc(x: String?) {
// x should be non-null in arguments list
x?.foo(<!DEBUG_INFO_SMARTCAST!>x<!>.length - 1)
}