mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
14 lines
200 B
Kotlin
Vendored
14 lines
200 B
Kotlin
Vendored
// KOTLIN_CONFIGURATION_FLAGS: +JVM.JVM_8_TARGET
|
|
interface Test {
|
|
fun test(): String {
|
|
return "OK"
|
|
}
|
|
}
|
|
|
|
class TestClass : Test {
|
|
|
|
}
|
|
|
|
fun box(): String {
|
|
return TestClass().test()
|
|
} |