mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
29 lines
461 B
Kotlin
Vendored
29 lines
461 B
Kotlin
Vendored
// FILE: Simple.java
|
|
|
|
public interface Simple {
|
|
default String test(String s) {
|
|
return s + "K";
|
|
}
|
|
|
|
static String testStatic(String s) {
|
|
return s + "K";
|
|
}
|
|
}
|
|
|
|
// FILE: main.kt
|
|
|
|
interface KInterface : Simple {
|
|
fun bar(): String {
|
|
return test("O") + Simple.testStatic("O")
|
|
}
|
|
}
|
|
|
|
class Test : KInterface {}
|
|
|
|
fun box(): String {
|
|
val test = Test().bar()
|
|
if (test != "OKOK") return "fail $test"
|
|
|
|
return "OK"
|
|
}
|