mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
fix testdata
This commit is contained in:
@@ -4,7 +4,7 @@ interface SAM<X> {
|
||||
|
||||
class Foo {
|
||||
void test() {
|
||||
SAM<Integer> c = (i, j) -> "" + i + j;
|
||||
SAM<Integer> c = (i, j) -> i + j;
|
||||
SAM<Integer> s3 = m(c);
|
||||
}
|
||||
<X> SAM<X> m(SAM<X> s) { return null; }
|
||||
|
||||
@@ -4,7 +4,7 @@ interface SAM<X> {
|
||||
|
||||
class Foo {
|
||||
void test() {
|
||||
SAM<Integer> s3 = m(<selection>(i, j) -> "" + i + j</selection>);
|
||||
SAM<Integer> s3 = m(<selection>(i, j) -> i + j</selection>);
|
||||
}
|
||||
<X> SAM<X> m(SAM<X> s) { return null; }
|
||||
}
|
||||
Reference in New Issue
Block a user