11 lines
185 B
Kotlin
Vendored
11 lines
185 B
Kotlin
Vendored
// !LANGUAGE: +InlineClasses
|
|
|
|
inline class R(private val r: Long) {
|
|
private fun ok() = "OK"
|
|
|
|
companion object {
|
|
fun test(r: R) = r.ok()
|
|
}
|
|
}
|
|
|
|
fun box() = R.test(R(0)) |