mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
19 lines
244 B
Kotlin
Vendored
19 lines
244 B
Kotlin
Vendored
// !API_VERSION: 1.3
|
|
// JVM_TARGET: 1.8
|
|
// WITH_RUNTIME
|
|
|
|
interface Test {
|
|
@kotlin.annotations.JvmDefault
|
|
fun test(): String {
|
|
return "OK"
|
|
}
|
|
}
|
|
|
|
class TestClass : Test {
|
|
|
|
}
|
|
|
|
fun box(): String {
|
|
return TestClass().test()
|
|
}
|