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