// "Surround with array initialization" "false" import java.util.List; class X { void x() { List l = of(new Integer[]{1}); } static List of(E[] elements) { return null; } }