Files
kotlin-fork/js/js.translator/testData/box/rtti/isObject.kt
T
2016-09-29 12:00:46 +03:00

12 lines
124 B
Kotlin
Vendored

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