Files
kotlin-fork/compiler/testData/codegen/box/reflection/properties/publicClassValAccessible.kt
T
2016-11-09 21:41:12 +03:00

18 lines
406 B
Kotlin
Vendored

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
// WITH_REFLECT
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())
}