Allow to step into inline functions while debugging Android app (KT-12896)
#KT-12896 In Progress
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package dexInline
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
//Breakpoint!
|
||||
myPrint("OK")
|
||||
}
|
||||
|
||||
inline fun myPrint(s: String) {
|
||||
val z = s;
|
||||
}
|
||||
Reference in New Issue
Block a user