Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
417088e15084daef5c72bc17ea66d3cf3c026c33
/
.
/
compiler
/
testData
/
codegen
/
box
/
inlineClasses
/
anySuperCall.kt
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"
}