Files
kotlin-fork/compiler/testData/ir/irText/js/dynamic/dynamicAndMembersOfAny.kt.txt
T
Sergej Jaskiewicz 17a8fd2c0b [test] Move irJsText tests to irText directory
So that all irText tests could be found in one place
2023-03-22 15:18:15 +00:00

13 lines
213 B
Kotlin
Vendored

fun test1(d: dynamic): String {
return d /*~> Any */.toString()
}
fun test2(d: dynamic): Int {
return d /*~> Any */.hashCode()
}
fun test3(d: dynamic): Boolean {
return d /*~> Any */.equals(other = 42)
}