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