Introduce KProperty{0,1,2}.getDelegate
#KT-8384 In Progress
This commit is contained in:
+22
@@ -0,0 +1,22 @@
|
||||
// IGNORE_BACKEND: JS
|
||||
|
||||
// No kotlin-reflect.jar in this test
|
||||
// WITH_RUNTIME
|
||||
|
||||
import kotlin.reflect.KProperty
|
||||
|
||||
object Delegate {
|
||||
operator fun getValue(instance: Any?, property: KProperty<*>) = ""
|
||||
}
|
||||
|
||||
val foo: String by Delegate
|
||||
|
||||
fun box(): String {
|
||||
try {
|
||||
::foo.getDelegate()
|
||||
return "Fail: error should have been thrown"
|
||||
}
|
||||
catch (e: KotlinReflectionNotSupportedError) {
|
||||
return "OK"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user