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

11 lines
113 B
Kotlin
Vendored

package stopInWrongClass
class A {
fun test() {
// Breakpoint 1
foo()
}
}
fun foo() {
}