14 lines
183 B
Kotlin
Vendored
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"
|
|
}
|