Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
847a2ced07911ac5a943ed41390d054d0e81aa1f
/
.
/
compiler
/
testData
/
codegen
/
box
/
inlineClasses
/
anySuperCallGeneric.kt
blob: 6d858b49cc84d7244477dd4c08164a9d9bd07d09 [
file
]
// WITH_STDLIB
// WORKS_WHEN_VALUE_CLASS
OPTIONAL_JVM_INLINE_ANNOTATION
value
class
A
<
T
:
Int
>(
val x
:
T
)
{
fun f
():
Int
=
super
.
hashCode
()
}
fun box
():
String
{
val a
=
A
(
1
).
f
()
return
"OK"
}