Files
2020-07-07 07:58:05 +00:00

7 lines
127 B
Java

public class Test {
int x = newMethod(), y, /*comment*/ z = 0;
private int newMethod() {
return 2 + 2;
}
}