mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
13 lines
177 B
Kotlin
Vendored
13 lines
177 B
Kotlin
Vendored
interface KTrait: Simple {
|
|
override fun test(s: String): String {
|
|
return s + "K"
|
|
}
|
|
}
|
|
|
|
class Test : KTrait {
|
|
|
|
}
|
|
|
|
fun box(): String {
|
|
return Test().test("O")
|
|
} |