mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-25 17:11:52 +07:00
10 lines
208 B
Java
10 lines
208 B
Java
interface SAM<X> {
|
|
X m(int i, int j);
|
|
}
|
|
|
|
class Foo {
|
|
void test() {
|
|
SAM<Integer> s3 = m(<selection>(i, j) -> "" + i + j</selection>);
|
|
}
|
|
<X> SAM<X> m(SAM<X> s) { return null; }
|
|
} |