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