mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-16 08:39:59 +07:00
9 lines
101 B
Plaintext
9 lines
101 B
Plaintext
class Bar {
|
|
private void foo() {
|
|
f();
|
|
Runnable r = this::f;
|
|
}
|
|
|
|
void f() {}
|
|
|
|
} |