blob: cf45d066f950598c87c866cdcebcc40536b203b1 [file] [log] [blame]
// "Add on demand static import for 'java.util.Arrays'" "true"
package test;
import java.util.*;
public class Foo {
{
Block<Integer[]> b2 = Arrays::sort;
Arra<caret>ys.sort((byte[])null);
}
public interface Block<T> {
void apply(T t);
}
}