mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
12 lines
210 B
Java
12 lines
210 B
Java
// "Use existing implementation of 'm'" "true"
|
|
enum I {
|
|
A("a"),
|
|
B("b") {
|
|
public void m() {
|
|
System.out.println("");
|
|
}
|
|
};
|
|
abstract void <caret>m();
|
|
I(String s){}
|
|
}
|