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

17 lines
238 B
Kotlin
Vendored

package kt15259
interface ObjectFace
private fun makeFace() = object : ObjectFace {
//Breakpoint!
init { 5 }
}
fun main() {
makeFace()
}
// STEP_OVER: 1
// EXPRESSION: this
// RESULT: 'this' is not defined in this context