Files
kotlin-fork/compiler/testData/ir/irJsText/dynamic/dynamicWithSmartCast.fir.kt.txt
T
2022-06-02 13:47:33 +00:00

15 lines
238 B
Plaintext
Vendored

fun test1(d: dynamic): Int {
return when {
d is String -> d /*~> String */.<get-length>()
else -> -1
}
}
fun test2(d: dynamic): Int {
return when {
d is Array<*> -> d /*~> Array<*> */.<get-size>()
else -> -1
}
}