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.
9 lines
254 B
Kotlin
Vendored
9 lines
254 B
Kotlin
Vendored
// TARGET_BACKEND: JVM_OLD
|
|
|
|
<!CONFLICTING_JVM_DECLARATIONS!>object O<!> {
|
|
<!CONFLICTING_JVM_DECLARATIONS!>val INSTANCE: O<!> = null!!
|
|
}
|
|
|
|
<!CONFLICTING_JVM_DECLARATIONS!>object O2<!> {
|
|
<!CONFLICTING_JVM_DECLARATIONS!>lateinit var INSTANCE: O2<!>
|
|
} |