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