mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
13 lines
154 B
Java
Vendored
13 lines
154 B
Java
Vendored
interface Test {
|
|
|
|
String call();
|
|
|
|
default String test() {
|
|
return "K";
|
|
}
|
|
|
|
static String testStatic() {
|
|
return "K";
|
|
}
|
|
}
|