mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
16 lines
362 B
Kotlin
Vendored
16 lines
362 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
// IGNORE_BACKEND: JS_IR
|
|
// KT-12630 KotlinReflectionInternalError on referencing some functions from stdlib
|
|
|
|
// IGNORE_BACKEND: JS, NATIVE
|
|
// WITH_REFLECT
|
|
|
|
import kotlin.test.*
|
|
|
|
fun box(): String {
|
|
val hashCode = Any?::hashCode
|
|
assertEquals("fun kotlin.Any?.hashCode(): kotlin.Int", hashCode.toString())
|
|
|
|
return "OK"
|
|
}
|