fix testdata

This commit is contained in:
Anna Kozlova
2015-11-23 11:26:34 +01:00
parent 16d339c933
commit c45f4e0aa0
2 changed files with 2 additions and 2 deletions
@@ -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; }
}