mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
12 lines
248 B
Java
12 lines
248 B
Java
class Test {
|
|
void test(int x, float y){
|
|
<selection>int code;
|
|
if (x == 22) return;
|
|
if (x > 0) {
|
|
code = 1;
|
|
} else {
|
|
code = 42;
|
|
}</selection>
|
|
System.out.println(code);
|
|
}
|
|
} |