mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
12 lines
131 B
Java
12 lines
131 B
Java
interface SAM {
|
|
default void foo(boolean b){}
|
|
void bar();
|
|
}
|
|
|
|
class Test {
|
|
{
|
|
bar(() -> {});
|
|
}
|
|
|
|
void bar(SAM sam){}
|
|
} |