java-decompiler: tests moved
This commit is contained in:
30
testData/results/TestEnum.dec
Normal file
30
testData/results/TestEnum.dec
Normal file
@@ -0,0 +1,30 @@
|
||||
package pkg;
|
||||
|
||||
|
||||
public enum TestEnum {
|
||||
|
||||
E1,
|
||||
E2 {
|
||||
public void m() {
|
||||
}
|
||||
},
|
||||
E3("-"),
|
||||
E4("+") {
|
||||
public void m() {
|
||||
}
|
||||
};
|
||||
private String s;
|
||||
|
||||
|
||||
public void m() {
|
||||
}
|
||||
|
||||
private TestEnum() {
|
||||
this((String)"?");
|
||||
}
|
||||
|
||||
private TestEnum(@Deprecated String var3) {
|
||||
this.s = var3;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user