Files
kotlin-fork/idea/jvm-debugger/jvm-debugger-test/testData/evaluation/singleBreakpoint/privatePropertyWithExplicitDefaultGetter.kt
T
2019-10-08 19:13:55 +09:00

19 lines
264 B
Kotlin
Vendored

package privatePropertyWithExplicitDefaultGetter
fun main(args: Array<String>) {
val base = Some()
//Breakpoint!
args.size
}
annotation class Small
class Some {
private val a: Int = 1
@Small get
}
// EXPRESSION: base.a
// RESULT: 1: I