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