java-decompiler: tests moved

This commit is contained in:
Roman Shevchenko
2014-09-01 18:54:33 +04:00
parent d5fe121d1d
commit e629738a46
28 changed files with 467 additions and 10 deletions

View 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;
}
}