mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
17 lines
245 B
Java
17 lines
245 B
Java
class A {
|
|
void foo() {
|
|
if(Math.random() > 2) {
|
|
System.out.println("xyz");
|
|
return;
|
|
}
|
|
System.out.println("oops");
|
|
}
|
|
|
|
void bar(int x) {
|
|
if (x > 0) {
|
|
f<caret>oo();
|
|
}
|
|
System.out.println("x < 0");
|
|
}
|
|
}
|