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