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