mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 10:21:05 +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 fo<caret>o() {
|
|
//noinspection unchecked
|
|
foo(new ArrayList<String>());
|
|
}
|
|
}
|
|
|