mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-05 21:00:59 +07:00
14 lines
236 B
Plaintext
14 lines
236 B
Plaintext
class A {
|
|
|
|
void bar(int x) {
|
|
Runnable r = () -> {
|
|
System.out.println("hi");
|
|
if(Math.random() > 2) {
|
|
System.out.println("xyz");
|
|
return;
|
|
}
|
|
System.out.println("oops");
|
|
};
|
|
}
|
|
}
|