Files
kotlin-fork/js/js.translator/testData/rtti/cases/isObject.kt
T

13 lines
148 B
Kotlin
Vendored

package foo
object Obj
fun box(): String {
val r: Any = Obj
// TODO: fix KT-13465
// if (r !is Obj) return "r !is Obj"
return "OK"
}