mirror of
https://github.com/moparisthebest/fernflower
synced 2024-11-23 09:42:18 -05:00
020f5c404b
(loosely based on https://github.com/JetBrains/intellij-community/pull/217)
28 lines
325 B
Plaintext
28 lines
325 B
Plaintext
package pkg;
|
|
|
|
public enum TestEnum {
|
|
E1,
|
|
E2 {
|
|
public void m() {
|
|
}
|
|
},
|
|
E3("-"),
|
|
E4("+") {
|
|
public void m() {
|
|
}
|
|
};
|
|
|
|
private String s;
|
|
|
|
public void m() {
|
|
}
|
|
|
|
private TestEnum() {
|
|
this("?");
|
|
}
|
|
|
|
private TestEnum(@Deprecated String var3) {
|
|
this.s = var3;
|
|
}
|
|
}
|