Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/contextsAndAccessors/accessPrivateInlineClassCompanionMethod.kt
T

12 lines
174 B
Kotlin
Vendored

// WITH_RUNTIME
@JvmInline
value class R(private val r: Int) {
fun test() = ok()
companion object {
private fun ok() = "OK"
}
}
fun box() = R(0).test()