Files
kotlin-fork/plugins/jvm-abi-gen/testData/compare/declarationOrderPrivateInline/base/test.kt
T
2021-08-23 18:25:33 +02:00

10 lines
104 B
Kotlin
Vendored

package test
private inline fun f(): Int {
return g()
}
private inline fun g() = 1
fun h() = f()