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

21 lines
284 B
Kotlin
Vendored

package kt29179
class A {
val a = 1
fun bar() = 2
fun foo() {
3
//Breakpoint!
.toString()
}
}
fun main() {
A().foo()
}
// EXPRESSION: bar()
// RESULT: 2: I
// EXPRESSION: this
// RESULT: instance of kt29179.A(id=ID): Lkt29179/A;