mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
13 lines
293 B
Kotlin
Vendored
13 lines
293 B
Kotlin
Vendored
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())
|
|
}
|