Move debugger test data to the new location
This commit is contained in:
+21
@@ -0,0 +1,21 @@
|
||||
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
|
||||
Reference in New Issue
Block a user