05e22e56d3
^KT-59057 Merge-request: KT-MR-10570 Merged-by: Vladimir Sukharev <Vladimir.Sukharev@jetbrains.com>
26 lines
612 B
Kotlin
Vendored
26 lines
612 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
|
|
// WITH_REFLECT
|
|
|
|
import kotlin.reflect.full.*
|
|
|
|
class A(param: String) {
|
|
val int: Int get() = 42
|
|
val string: String = param
|
|
var anyVar: Any? = null
|
|
|
|
val List<IntRange>.extensionToList: Unit get() {}
|
|
|
|
fun notAProperty() {}
|
|
}
|
|
|
|
fun box(): String {
|
|
val props = A::class.memberProperties
|
|
|
|
val names = props.map { it.name }.sorted()
|
|
assert(names == listOf("anyVar", "int", "string")) { "Fail names: $props" }
|
|
|
|
val stringProp = props.firstOrNull { it.name == "string" } ?: return "Fail, string not found: $props"
|
|
return stringProp.get(A("OK")) as String
|
|
}
|