Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/contextsAndAccessors/accessPrivateInlineClassCompanionMethod.kt
T
2020-03-24 18:58:19 +03:00

11 lines
177 B
Kotlin
Vendored

// !LANGUAGE: +InlineClasses
inline class R(private val r: Int) {
fun test() = ok()
companion object {
private fun ok() = "OK"
}
}
fun box() = R(0).test()