14 lines
292 B
Kotlin
Vendored
14 lines
292 B
Kotlin
Vendored
// WITH_STDLIB
|
|
// WORKS_WHEN_VALUE_CLASS
|
|
// LANGUAGE: +ValueClasses, +GenericInlineClassParameter
|
|
|
|
fun <T> eval(fn: () -> T) = fn()
|
|
|
|
OPTIONAL_JVM_INLINE_ANNOTATION
|
|
value class R<T: Int>(private val r: T) {
|
|
fun test() = eval { ok() }
|
|
|
|
private fun ok() = "OK"
|
|
}
|
|
|
|
fun box() = R(0).test() |