blob: b833d50f4a7d063d4ec3d689aa85eb4d38c1555c [file] [log] [blame]
interface SAM {
default void foo(boolean b){}
void bar();
}
class Test {
{
bar(() -> {});
}
void bar(SAM sam){}
}