mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
13 lines
162 B
Kotlin
Vendored
13 lines
162 B
Kotlin
Vendored
// JVM_TARGET: 1.8
|
|
|
|
interface Z {
|
|
fun test(s: String = "OK"): String {
|
|
return s
|
|
}
|
|
}
|
|
|
|
class Test: Z
|
|
|
|
fun box(): String {
|
|
return Test().test()
|
|
} |