Files
kotlin-fork/compiler/testData/codegen/boxInline/private/privateInline.2.kt
T
2015-10-18 17:53:28 +03:00

15 lines
179 B
Kotlin
Vendored

package test
private val prop = "O"
private fun test() = "K"
inline internal fun inlineFun(): String {
return prop + test()
}
class A () {
fun call() = inlineFun()
}