Files
2023-10-11 11:13:02 +00:00

14 lines
217 B
Java

// "Remove 'unchecked' suppression" "true-preview"
import java.util.ArrayList;
class Test {
@SafeVarargs
private static <T> void foo(T... t){
}
public void foo() {
foo(new ArrayList<String>());
}
}