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