aea9642ea0
Instead of calling enormously complicated KotlinTypeMapper.mapToCallableMethod, where most of special cases are handled in the IR backend via lowerings.
19 lines
246 B
Kotlin
Vendored
19 lines
246 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
// TARGET_BACKEND: JVM
|
|
// FILE: A.kt
|
|
|
|
package aaa
|
|
|
|
import kotlin.jvm.*
|
|
|
|
public object TestObject {
|
|
@JvmStatic
|
|
public val test: String = "OK"
|
|
}
|
|
|
|
// FILE: B.kt
|
|
|
|
fun box(): String {
|
|
return aaa.TestObject.test
|
|
}
|