2fdc2dfaaf
References to properties with JvmStatic getter were not handled in MakeCallsStatic (by overwriting dispatchReceiver with null) because the property itself was not considered static. #KT-43672 Fixed
56 lines
1.3 KiB
Kotlin
Vendored
56 lines
1.3 KiB
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
// WITH_RUNTIME
|
|
|
|
import kotlin.reflect.*
|
|
|
|
object Host {
|
|
var none: Int = 0
|
|
get() = field
|
|
set(value) { field = value }
|
|
|
|
var get: Int = 0
|
|
@JvmStatic
|
|
get() = field
|
|
set(value) { field = value }
|
|
|
|
var set: Int = 0
|
|
get() = field
|
|
@JvmStatic
|
|
set(value) { field = value }
|
|
|
|
var both: Int = 0
|
|
@JvmStatic
|
|
get() = field
|
|
@JvmStatic
|
|
set(value) { field = value }
|
|
|
|
@JvmStatic
|
|
var property: Int = 0
|
|
get() = field
|
|
set(value) { field = value }
|
|
}
|
|
|
|
fun box(): String {
|
|
val none = Host::none as KMutableProperty0<Int>
|
|
none.set(1)
|
|
if (none.get() != 1) return "Fail none: ${none.get()}"
|
|
|
|
val get = Host::get as KMutableProperty0<Int>
|
|
get.set(1)
|
|
if (get.get() != 1) return "Fail get: ${get.get()}"
|
|
|
|
val set = Host::set as KMutableProperty0<Int>
|
|
set.set(1)
|
|
if (set.get() != 1) return "Fail set: ${set.get()}"
|
|
|
|
val both = Host::both as KMutableProperty0<Int>
|
|
both.set(1)
|
|
if (both.get() != 1) return "Fail both: ${both.get()}"
|
|
|
|
val property = Host::property as KMutableProperty0<Int>
|
|
property.set(1)
|
|
if (property.get() != 1) return "Fail property: ${property.get()}"
|
|
|
|
return "OK"
|
|
}
|