Files

11 lines
146 B
Kotlin
Vendored

// See KT-774
fun box() : Int {
var a : Any = 1
var d = 1
if (a is Int) {
return a + d
} else {
return 2
}
}