Files
kotlin-fork/js/js.translator/testData/box/rtti/isObject.kt
T
2018-04-19 13:17:28 +03:00

14 lines
183 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
// EXPECTED_REACHABLE_NODES: 1112
package foo
object Obj
fun box(): String {
val r: Any = Obj
if (r !is Obj) return "r !is Obj"
return "OK"
}