mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-12 04:36:59 +07:00
26 lines
241 B
Java
26 lines
241 B
Java
|
|
class Bar {
|
|
static void f<caret>oo() {
|
|
}
|
|
|
|
void m(){
|
|
Bar.foo();
|
|
}
|
|
|
|
{
|
|
Runnable r = Bar::foo;
|
|
}
|
|
|
|
static {
|
|
Runnable r = Bar::foo;
|
|
}
|
|
}
|
|
|
|
class Bar1 {
|
|
void m() {
|
|
Bar.foo();
|
|
}
|
|
{
|
|
Runnable r = Bar::foo;
|
|
}
|
|
} |