mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 03:07:47 +07:00
IDEA-111715: implements for enum constant without class initializer
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
// "Implement Methods" "true"
|
||||
enum E {
|
||||
A {
|
||||
public void foo() {
|
||||
|
||||
}
|
||||
};
|
||||
abstract void foo();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
// "Implement Methods" "true"
|
||||
enum E {
|
||||
<caret>A;
|
||||
public abstract void foo();
|
||||
}
|
||||
Reference in New Issue
Block a user