mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 04:07:30 +07:00
GitOrigin-RevId: bea8f280aa73964b94f4bd66d4e542393f2a6ea7
7 lines
127 B
Java
7 lines
127 B
Java
public class Test {
|
|
int a = 1 + 1, b = newMethod(), c = 3 - 3;
|
|
|
|
private int newMethod() {
|
|
return 2 * 2;
|
|
}
|
|
} |