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,17 @@
package pkg;
class TestCodeConstructs {
private int count = 0;
void expressions() {
(new String()).hashCode();
}
String fieldIncrement() {
int var1 = this.count++;
return "id:" + var1;
}
}