mirror of
https://github.com/moparisthebest/fernflower
synced 2024-10-31 15:35:08 -04:00
14 lines
208 B
Plaintext
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++);
|
|
}
|
|
}
|