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";
|
|
}
|
|
} |