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