Files
kotlin-fork/compiler/testData/codegen/box/jvm8/simpleCall.kt
T
2019-11-19 11:00:09 +03:00

18 lines
225 B
Kotlin
Vendored

// 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()
}