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

10 lines
173 B
Kotlin
Vendored

// WITH_RUNTIME
inline fun runInline(fn: () -> String) = fn()
@JvmInline
value class R(private val r: Int) {
fun test() = runInline { "OK" }
}
fun box() = R(0).test()