0
0
mirror of https://hub.spigotmc.org/stash/scm/spigot/fernflower.git synced 2024-11-23 18:16:42 +00:00
fernflower/testData/results/TestCodeConstructs.dec
2014-09-07 16:44:22 +04:00

14 lines
208 B
Plaintext

package pkg;
class TestCodeConstructs {
private int count = 0;
void expressions() {
(new String()).hashCode();
}
Integer fieldIncrement() {
return new Integer(this.count++);
}
}