mirror of
https://github.com/moparisthebest/fernflower
synced 2024-11-10 19:35:14 -05:00
18 lines
228 B
Plaintext
18 lines
228 B
Plaintext
package pkg;
|
|
|
|
|
|
class TestCodeConstructs {
|
|
|
|
private int count = 0;
|
|
|
|
|
|
void expressions() {
|
|
(new String()).hashCode();
|
|
}
|
|
|
|
String fieldIncrement() {
|
|
int var1 = this.count++;
|
|
return "id:" + var1;
|
|
}
|
|
}
|