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

11 lines
188 B
Kotlin
Vendored

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