mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-05 12:50:18 +07:00
9 lines
117 B
Java
9 lines
117 B
Java
// "Implement Methods" "true"
|
|
enum E {
|
|
A {
|
|
public void foo() {
|
|
|
|
}
|
|
};
|
|
abstract void foo();
|
|
} |