// "Remove 'unchecked' suppression" "true-preview" import java.util.*; public class Test { @SafeVarargs static List foo(T... t){ return null; } /** * Some javadoc with unchecked word inside */ @SuppressWarnings("unchecked") void foo() { List> list = foo(new ArrayList()); } }