mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
13 lines
293 B
Kotlin
13 lines
293 B
Kotlin
import kotlin.reflect.jvm.accessible
|
|
|
|
class Result {
|
|
public val value: String = "OK"
|
|
}
|
|
|
|
fun box(): String {
|
|
val p = Result::value
|
|
p.accessible = false
|
|
// setAccessible(false) should have no effect on the accessibility of a public reflection object
|
|
return p.get(Result())
|
|
}
|