mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 01:09:46 +07:00
9 lines
409 B
Java
9 lines
409 B
Java
<error descr="Class 'MyEnumTest' must either be declared abstract or implement abstract method 'm()' in 'MyEnumTest'">enum MyEnumTest</error> {
|
|
;
|
|
public abstract void m();
|
|
}
|
|
|
|
<error descr="Class 'WithoutConstantInitializer' must either be declared abstract or implement abstract method 'm()' in 'WithoutConstantInitializer'">enum WithoutConstantInitializer</error> {
|
|
FIRST;
|
|
public abstract void m();
|
|
} |