Files
2020-07-07 12:25:30 +00:00

7 lines
127 B
Java

public class Test {
int a = 1 + 1, b = newMethod(), c = 3 - 3;
private int newMethod() {
return 2 * 2;
}
}