mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
26 lines
454 B
Plaintext
26 lines
454 B
Plaintext
class A {
|
|
|
|
void bar(int x) {
|
|
if (x > 0) {
|
|
if(Math.random() > 2) {
|
|
System.out.println("xyz");
|
|
return;
|
|
}
|
|
System.out.println("oops");
|
|
} else {
|
|
System.out.println("x < 0");
|
|
}
|
|
}
|
|
|
|
void baz(int x) {
|
|
if (x > 0)
|
|
if (x < 10) {
|
|
if(Math.random() > 2) {
|
|
System.out.println("xyz");
|
|
return;
|
|
}
|
|
System.out.println("oops");
|
|
}
|
|
}
|
|
}
|