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

11 lines
105 B
Kotlin
Vendored

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