blob: f45e99a5b09309540d7a49c3fb2bb02b3da2e320 [file] [log] [blame]
class MyTest {
static interface SAM {
void m(Integer i);
}
void m(Integer i) {}
void m(Double d) {}
SAM s = this:<caret>:m;
}