mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
14 lines
201 B
Java
14 lines
201 B
Java
// "Remove 'unchecked' suppression" "true"
|
|
import java.util.ArrayList;
|
|
|
|
public class Test {
|
|
@SafeVarargs
|
|
static <T> void foo(T... t){
|
|
}
|
|
|
|
void foo() {
|
|
foo(new ArrayList<String>());
|
|
}
|
|
}
|
|
|