19 lines
251 B
Kotlin
Vendored
19 lines
251 B
Kotlin
Vendored
// 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() {}
|