blob: df7683e00fafd6152cb1cd8550838cdad716f1bc [file] [log] [blame]
interface I {
void foo();
}
class IImpl implements I {
public void foo(){}
public void g<caret>et() {}
{
I i = () -> {};
}
}