Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
signatureMangling
/
inheritFromJava.kt
blob: d1f2327b33dd2ecdf2223e63414af1f60449ef59 [
file
]
// TARGET_BACKEND: JVM_IR
// FILE: Base.java
public
class
Base
{
public
String
ok
()
{
return
"OK"
;
}
}
// FILE: Derived.kt
class
Derived
:
Base
()
inline
fun ok
()
=
Derived
().
ok
()
// FILE: box.kt
fun box
()
=
ok
()