bffe9e45e8
KT-26858 was fixed somewhere in the middle. #KT26858
12 lines
204 B
Kotlin
Vendored
12 lines
204 B
Kotlin
Vendored
// !LANGUAGE: +InlineClasses
|
|
// IGNORE_BACKEND: JVM_IR
|
|
|
|
inline class R(private val r: Long) {
|
|
fun test() = ok()
|
|
|
|
companion object {
|
|
private fun ok() = "OK"
|
|
}
|
|
}
|
|
|
|
fun box() = R(0).test() |