Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
compiler
/
testData
/
codegen
/
box
/
inlineClasses
/
anySuperCall.kt
blob: 3c62f948f1d62f905b46d75d2bb670212393bb97 [
file
]
// !LANGUAGE: +InlineClasses
// IGNORE_BACKEND: JVM
inline
class
A
(
val x
:
Int
)
{
fun f
():
Int
=
super
.
hashCode
()
}
fun box
():
String
{
val a
=
A
(
1
).
f
()
return
"OK"
}