bffe9e45e8
KT-26858 was fixed somewhere in the middle. #KT26858
12 lines
211 B
Kotlin
Vendored
12 lines
211 B
Kotlin
Vendored
// !LANGUAGE: +InlineClasses
|
|
// IGNORE_BACKEND: JVM_IR
|
|
|
|
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)) |