Debugger: Remove/change tests for the deprecated Android dex
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
// FILE: stopInInlineInOtherFile.kt
|
||||
package stopInInlineInOtherFile
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
inlineFun()
|
||||
}
|
||||
|
||||
// ADDITIONAL_BREAKPOINT: stopInInlineInOtherFile.Other.kt: Breakpoint 1
|
||||
|
||||
// FILE: stopInInlineInOtherFile.Other.kt
|
||||
package stopInInlineInOtherFile
|
||||
|
||||
inline fun inlineFun() {
|
||||
var i = 1
|
||||
// Breakpoint 1
|
||||
i++
|
||||
i++
|
||||
}
|
||||
Reference in New Issue
Block a user