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.
6 lines
153 B
Kotlin
Vendored
6 lines
153 B
Kotlin
Vendored
class Outer {
|
|
val x = object {
|
|
<!CONFLICTING_JVM_DECLARATIONS!>val x<!> = 1
|
|
<!CONFLICTING_JVM_DECLARATIONS!>fun getX()<!> = 1
|
|
}
|
|
} |