54858c2118
^KT-63655: Fixed ^KT-63901: Fixed ^KT-63988: Fixed
12 lines
242 B
Kotlin
Vendored
12 lines
242 B
Kotlin
Vendored
// TARGET_BACKEND: JVM_IR
|
|
// WITH_REFLECT
|
|
|
|
import kotlin.reflect.full.memberProperties
|
|
|
|
class A {
|
|
val prop = object {
|
|
val nestedProp = object {}
|
|
}
|
|
}
|
|
|
|
fun box() = if (A().prop::class.memberProperties.size == 1) "OK" else "Fail" |