mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 00:19:11 +07:00
GitOrigin-RevId: c869ac621c25373fa08e742439f6022fa6052efc
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;
|
|
}
|
|
}
|