mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
9 lines
146 B
Java
Vendored
9 lines
146 B
Java
Vendored
interface Inter {
|
|
String something();
|
|
}
|
|
|
|
class Test extends Abstract implements Inter {
|
|
String something() {
|
|
return "123";
|
|
}
|
|
} |