blob: 24ab15983f485714e84e92b64a20971968cd1db2 [file]
// WITH_STDLIB
// WORKS_WHEN_VALUE_CLASS
// LANGUAGE: +JvmInlineMultiFieldValueClasses
OPTIONAL_JVM_INLINE_ANNOTATION
value class A(val x: Int) {
fun f(): Int = super.hashCode()
}
fun box(): String {
val a = A(1).f()
return "OK"
}