blob: a97db7b453f141f84efc42b5b67a3017a1ebda62 [file] [log] [blame]
public class Foo {
public void test() {
Object i = null;
long[][] avg = collect((i1) -> new long[i1][]);
}
interface P<T> {
T _(int i);
}
<T> T collect(P<T> h) {
return null;
}
}