// "Replace 'addAll()' call with parametrized constructor call" "true" import java.util.ArrayList; import java.util.Collection; import java.util.List; public class Test { void test(Object c) { List list, other; //noinspection unchecked list = new ArrayList<>((Collection) c); System.out.println(list); } }