mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-14 04:05:03 +07:00
8 lines
114 B
Java
8 lines
114 B
Java
class Bar {
|
|
void f() {}
|
|
|
|
private static void fo<caret>o(Bar bar) {
|
|
bar.f();
|
|
Runnable r = bar::f;
|
|
}
|
|
} |