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