Files

6 lines
88 B
Kotlin
Vendored

var a: Any = 1
fun test() {
if (a is String) {
<expr>a</expr>.length
}
}