Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
jvm8
/
simpleCall.kt
blob: d7c894bfef3a64be785abe36c44f9564edeacf96 [
file
]
// IGNORE_BACKEND_FIR: JVM_IR
// TARGET_BACKEND: JVM
// JVM_TARGET: 1.8
interface
Test
{
fun test
():
String
{
return
"OK"
}
}
class
TestClass
:
Test
{
}
fun box
():
String
{
return
TestClass
().
test
()
}