05e22e56d3
^KT-59057 Merge-request: KT-MR-10570 Merged-by: Vladimir Sukharev <Vladimir.Sukharev@jetbrains.com>
14 lines
300 B
Kotlin
Vendored
14 lines
300 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
// KT-12630 KotlinReflectionInternalError on referencing some functions from stdlib
|
|
|
|
// WITH_REFLECT
|
|
|
|
import kotlin.test.*
|
|
|
|
fun box(): String {
|
|
val hashCode = Any?::hashCode
|
|
assertEquals("fun kotlin.Any?.hashCode(): kotlin.Int", hashCode.toString())
|
|
|
|
return "OK"
|
|
}
|