Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
inlineClasses
/
mangledSuperCalls.kt
blob: 514ee58c9752a3aa7cdf0f87e9d0ff2970cfbeab [
file
] [
log
] [
blame
]
inline
class
I
(
val i
:
Int
)
abstract
class
A
{
abstract
fun f
(
i
:
I
):
String
}
open
class
B
:
A
()
{
override
fun f
(
i
:
I
):
String
=
"OK"
}
class
C
:
B
()
{
override
fun f
(
i
:
I
):
String
=
super
.
f
(
i
)
}
fun box
():
String
{
return
C
().
f
(
I
(
0
))
}