mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36:59 +07:00
15 lines
235 B
Java
15 lines
235 B
Java
// "Remove 'unchecked' suppression" "true"
|
|
import java.util.ArrayList;
|
|
|
|
public class Test {
|
|
@SafeVarargs
|
|
static <T> void foo(T... t){
|
|
}
|
|
|
|
void foo() {
|
|
//noinspec<caret>tion unchecked
|
|
foo(new ArrayList<String>());
|
|
}
|
|
}
|
|
|