a5e4e0284e
This patch mutes the following test categories:
* Tests with java dependencies (System class,
java stdlib, jvm-oriented annotations etc).
* Coroutines tests.
* Reflection tests.
* Tests with an inheritance from the standard
collections.
38 lines
912 B
Kotlin
Vendored
38 lines
912 B
Kotlin
Vendored
// TODO: muted automatically, investigate should it be ran for JS or not
|
|
// IGNORE_BACKEND: JS, NATIVE
|
|
|
|
// WITH_REFLECT
|
|
|
|
import kotlin.reflect.*
|
|
import kotlin.reflect.jvm.*
|
|
|
|
object Delegate {
|
|
operator fun getValue(thiz: My, property: KProperty<*>): String {
|
|
if (property !is KMutableProperty<*>) return "Fail: property is not a KMutableProperty"
|
|
property as KMutableProperty1<My, String>
|
|
|
|
try {
|
|
property.set(thiz, "")
|
|
return "Fail: property.set should cause IllegalCallableAccessException"
|
|
}
|
|
catch (e: IllegalCallableAccessException) {
|
|
// OK
|
|
}
|
|
|
|
property.isAccessible = true
|
|
property.set(thiz, "")
|
|
|
|
return "OK"
|
|
}
|
|
|
|
operator fun setValue(thiz: My, property: KProperty<*>, value: String) {
|
|
}
|
|
}
|
|
|
|
class My {
|
|
var delegate: String by Delegate
|
|
private set
|
|
}
|
|
|
|
fun box() = My().delegate
|