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.
8 lines
202 B
Kotlin
Vendored
8 lines
202 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
// TARGET_BACKEND: JVM_OLD
|
|
|
|
class C {
|
|
inner class <!CONFLICTING_JVM_DECLARATIONS!>D<!> {
|
|
<!CONFLICTING_JVM_DECLARATIONS!>val `this$0`: C?<!> = null
|
|
}
|
|
} |