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.
10 lines
228 B
Kotlin
Vendored
10 lines
228 B
Kotlin
Vendored
// TARGET_BACKEND: JVM_OLD
|
|
|
|
interface T {
|
|
fun getX() = 1
|
|
}
|
|
|
|
interface <!CONFLICTING_JVM_DECLARATIONS!>C<!> : T {
|
|
val x: Int
|
|
<!ACCIDENTAL_OVERRIDE, ACCIDENTAL_OVERRIDE, CONFLICTING_JVM_DECLARATIONS!>get()<!> = 1
|
|
} |