// "Fix all 'Redundant suppression' problems in file" "true" import java.util.ArrayList; public class Test { @SafeVarargs static void foo(T... t){ } void foo() { //noinspection unchecked foo(new ArrayList()); //noinspection unchecked foo(new ArrayList()); } }