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

23 lines
292 B
Kotlin
Vendored

package extractThisInTrait
fun main(args: Array<String>) {
TImpl().foo()
}
interface T {
fun foo() {
//Breakpoint!
val a = 1
}
val prop: Int
get() = 1
}
class TImpl(): T
// EXPRESSION: prop
// RESULT: 1: I
// EXPRESSION: this.prop
// RESULT: 1: I