14 lines
247 B
Kotlin
Vendored
14 lines
247 B
Kotlin
Vendored
// WITH_STDLIB
|
|
// WORKS_WHEN_VALUE_CLASS
|
|
// LANGUAGE: +ValueClasses
|
|
|
|
OPTIONAL_JVM_INLINE_ANNOTATION
|
|
value class R(private val r: Long) {
|
|
fun test() = ok()
|
|
|
|
companion object {
|
|
private fun ok() = "OK"
|
|
}
|
|
}
|
|
|
|
fun box() = R(0).test() |