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