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.
19 lines
402 B
Kotlin
Vendored
19 lines
402 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
// TARGET_BACKEND: JVM_IR
|
|
|
|
import kotlin.reflect.KProperty
|
|
|
|
operator fun Any.getValue(x: Any?, y: Any): Any = null!!
|
|
|
|
class C {
|
|
val x by 1
|
|
val `$$delegatedProperties`: Array<KProperty<*>> = null!!
|
|
}
|
|
|
|
class C2 {
|
|
val x by 1
|
|
lateinit var `$$delegatedProperties`: Array<KProperty<*>>
|
|
}
|
|
|
|
val x by 1
|
|
lateinit var `$$delegatedProperties`: Array<KProperty<*>> |