mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
16 lines
237 B
Kotlin
Vendored
16 lines
237 B
Kotlin
Vendored
// !API_VERSION: 1.3
|
|
// !ENABLE_JVM_DEFAULT
|
|
// JVM_TARGET: 1.8
|
|
// WITH_RUNTIME
|
|
interface Z {
|
|
@JvmDefault
|
|
fun test(s: String = "OK"): String {
|
|
return s
|
|
}
|
|
}
|
|
|
|
class Test: Z
|
|
|
|
fun box(): String {
|
|
return Test().test()
|
|
} |