mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
15 lines
221 B
Java
15 lines
221 B
Java
public class Test {
|
|
class Impl extends Base {
|
|
public String get() {
|
|
return "239";
|
|
}
|
|
}
|
|
|
|
abstract class Base implements Int {
|
|
|
|
}
|
|
|
|
interface Int {
|
|
String get();
|
|
}
|
|
} |