Files
kotlin-fork/compiler/testData/diagnostics/testsWithJvmBackend/duplicateJvmSignature/specialNames/propertyMetadataCache.kt
T
2023-07-17 16:55:24 +00:00

19 lines
393 B
Kotlin
Vendored

// FIR_IDENTICAL
// !DIAGNOSTICS: -UNUSED_PARAMETER
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<*>>