10 lines
150 B
Kotlin
Vendored
10 lines
150 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
@JvmInline
|
|
value class R(private val r: Long) {
|
|
fun test() = run { ok() }
|
|
|
|
private fun ok() = "OK"
|
|
}
|
|
|
|
fun box() = R(0).test() |