Files
kotlin/compiler/testData/codegen/java8/box/jvm8/simpleCall.kt
2017-01-13 13:52:57 +01:00

16 lines
172 B
Kotlin
Vendored

// JVM_TARGET: 1.8
interface Test {
fun test(): String {
return "OK"
}
}
class TestClass : Test {
}
fun box(): String {
return TestClass().test()
}