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