12 lines
263 B
Kotlin
Vendored
12 lines
263 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" }
|
|
}
|
|
|
|
fun box() = R(0).test() |