Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
jvm8
/
simpleCall.kt
blob: 40a4049739ea80b83e42e0d0134cfa948f68bbcf [
file
] [
log
] [
blame
]
// TARGET_BACKEND: JVM
// JVM_TARGET: 1.8
interface
Test
{
fun test
():
String
{
return
"OK"
}
}
class
TestClass
:
Test
{
}
fun box
():
String
{
return
TestClass
().
test
()
}