blob: 2babe6e21d22ec3a4708b337569ba9342a7a4577 [file] [log] [blame]
interface SAM<X> {
X m(int i, int j);
}
class Foo {
void test() {
m((i, j)->i + j);
}
void m(SAM<Integer> s) { }
}