mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
14 lines
267 B
Java
14 lines
267 B
Java
class Class1 {
|
|
public static int staticMethod() {
|
|
int a = 1;
|
|
int b = 2;
|
|
|
|
int temp = a + b;
|
|
return temp * 2;
|
|
}
|
|
|
|
public int foo(int a, int b) {
|
|
<selection>int temp = a + b;
|
|
return temp * 2;</selection>
|
|
}
|
|
} |