11 lines
105 B
Kotlin
Vendored
11 lines
105 B
Kotlin
Vendored
package test
|
|
|
|
|
|
fun h() = f()
|
|
|
|
private inline fun g() = 1
|
|
|
|
private inline fun f(): Int {
|
|
return g()
|
|
}
|