866f188120
Also: * Do not rename public ABI fields This includes backing fields for const, lateinit, @JvmField properties, and instance fields for objects. * FAKE_OVERRIDE declarations for static members of parent Java classes Required to report cases when a Kotlin function accidentally overrides Java class member.
19 lines
591 B
Kotlin
Vendored
19 lines
591 B
Kotlin
Vendored
<!CONFLICTING_JVM_DECLARATIONS!>package test
|
|
// TARGET_BACKEND: JVM_OLD
|
|
|
|
import kotlin.reflect.KProperty
|
|
|
|
operator fun Any.getValue(x: Any?, y: Any): Any = null!!
|
|
|
|
class <!CONFLICTING_JVM_DECLARATIONS!>C<!> {
|
|
val x by 1
|
|
<!CONFLICTING_JVM_DECLARATIONS!>val `$$delegatedProperties`: Array<KProperty<*>><!> = null!!
|
|
}
|
|
|
|
class <!CONFLICTING_JVM_DECLARATIONS!>C2<!> {
|
|
val x by 1
|
|
<!CONFLICTING_JVM_DECLARATIONS!>lateinit var `$$delegatedProperties`: Array<KProperty<*>><!>
|
|
}
|
|
|
|
val x by 1
|
|
<!CONFLICTING_JVM_DECLARATIONS!>lateinit var `$$delegatedProperties`: Array<KProperty<*>><!><!> |