mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
13 lines
216 B
Java
13 lines
216 B
Java
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) { }
|
|
} |