fernflower/testData/results/TestCodeConstructs.dec

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++);
}
}