Files
kotlin-fork/idea/jvm-debugger/jvm-debugger-test/testData/stepping/stepOver/stopInWrongClass.kt
T
2019-10-08 19:13:55 +09:00

21 lines
363 B
Kotlin
Vendored

package stopInWrongClass
class AA {
fun test() {
// Should be on the same line with Breakpoint 1
foo()
}
fun other() {
//Breakpoint!
foo()
}
}
fun main(args: Array<String>) {
// Shouldn't stop inside test()
AA().test()
AA().other()
}
// ADDITIONAL_BREAKPOINT: stopInWrongClass.Other.kt: Breakpoint 1