18 lines
226 B
Kotlin
Vendored
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() {}
|