mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 16:50:55 +07:00
9 lines
300 B
Java
9 lines
300 B
Java
enum MyEnumTest {
|
|
;
|
|
public <error descr="Abstract method in non-abstract class">abstract</error> void m();
|
|
}
|
|
|
|
enum WithoutConstantInitializer {
|
|
<error descr="Enum constant 'FIRST' must implement abstract method 'm()' in 'WithoutConstantInitializer'">FIRST</error>;
|
|
public abstract void m();
|
|
} |