blob: 516ff795c6a9fce83d197ee341eb54e436f2dd2a [file] [log] [blame]
// "Remove 'unchecked' suppression" "true"
import java.util.ArrayList;
public class Test {
@SafeVarargs
static <T> void foo(T... t){
}
void foo() {
foo(new ArrayList<String>());
}
}