mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
16 lines
303 B
Java
16 lines
303 B
Java
public class FooBar {
|
|
|
|
static void f<caret>oo() {}
|
|
|
|
|
|
public static void main(String[] args) throws Exception {
|
|
Runnable runnable = FooBar::foo;
|
|
}
|
|
}
|
|
|
|
class FooBarBaz {
|
|
public static void main(String[] args) throws Exception {
|
|
Runnable runnable = FooBar::foo;
|
|
}
|
|
}
|