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