import java.util.*; public class X { void foo() { List list = new ArrayList<>(); list.add("foo"); process(list); } void process(List list) { } }