Debugger: Remove/change tests for the deprecated Android dex
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
// FILE: soInlineUnitFun.kt
|
||||
package soInlineUnitFun
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
process()
|
||||
}
|
||||
|
||||
fun process(): String {
|
||||
simple()
|
||||
//Breakpoint!
|
||||
return "Constant" // 1
|
||||
}
|
||||
|
||||
inline fun simple() {
|
||||
inner()
|
||||
}
|
||||
|
||||
fun inner() {}
|
||||
Reference in New Issue
Block a user