mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
8 lines
154 B
Kotlin
Vendored
8 lines
154 B
Kotlin
Vendored
class Test : Simple {}
|
|
|
|
fun box(): String {
|
|
val test = Test().test("O")
|
|
if (test != "OK") return "fail $test"
|
|
|
|
return Simple.testStatic("O")
|
|
} |