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

18 lines
226 B
Kotlin
Vendored

package soInlineUnitFunDex
fun main(args: Array<String>) {
process()
}
fun process(): String {
simple()
//Breakpoint!
return "Constant" // 1
}
inline fun simple() {
inner()
}
fun inner() {}