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.
13 lines
211 B
Kotlin
Vendored
13 lines
211 B
Kotlin
Vendored
// TARGET_BACKEND: JVM_OLD
|
|
|
|
interface T1 {
|
|
fun getX() = 1
|
|
}
|
|
|
|
interface T2 {
|
|
val x: Int
|
|
get() = 1
|
|
}
|
|
|
|
class <!CONFLICTING_INHERITED_JVM_DECLARATIONS, CONFLICTING_JVM_DECLARATIONS!>C<!> : T1, T2 {
|
|
} |