blob: 2a28ea78e31552a392aa0103a56883e7017664a8 [file] [log] [blame]
interface SAM {
void <caret>foo();
}
class Test {
{
bar(() -> {});
}
void bar(SAM sam){}
}