mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
19 lines
336 B
Kotlin
Vendored
19 lines
336 B
Kotlin
Vendored
// FILE: J.java
|
|
|
|
public class J {
|
|
private static String result = "Fail";
|
|
}
|
|
|
|
// FILE: K.kt
|
|
|
|
import kotlin.reflect.*
|
|
import kotlin.reflect.jvm.*
|
|
|
|
fun box(): String {
|
|
val a = J()
|
|
val p = J::class.members.single { it.name == "result" } as KMutableProperty0<String>
|
|
p.isAccessible = true
|
|
p.set("OK")
|
|
return p.get()
|
|
}
|