mirror of
https://hub.spigotmc.org/stash/scm/spigot/fernflower.git
synced 2024-11-23 18:16:42 +00: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++);
|
|
}
|
|
}
|