blob: 9294bea1965239e4ac3b883f8393f153ca2ed0c5 [file] [log] [blame]
class MyTest {
static interface SAM {
void m(Integer i);
}
void m(Integer i) {}
void m(Double d) {}
SAM s = (i) -> m(i);
}