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