mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
9 lines
189 B
Kotlin
Vendored
9 lines
189 B
Kotlin
Vendored
interface TestTrait : Simple {}
|
|
class Test : TestTrait {}
|
|
|
|
fun box(): String {
|
|
val test = Test().test("O")
|
|
if (test != "OK") return "fail $test"
|
|
|
|
return Simple.testStatic("O")
|
|
} |