mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 12:50:56 +07:00
16 lines
275 B
Java
16 lines
275 B
Java
// "Remove 'unchecked' suppression" "false"
|
|
import java.util.*;
|
|
|
|
@SuppressWarnings("A<caret>LL")
|
|
public class Test {
|
|
@SafeVarargs
|
|
static <T> List<T> foo(T... t){
|
|
return null;
|
|
}
|
|
|
|
void foo() {
|
|
List<ArrayList<String>> list = foo(new ArrayList<String>());
|
|
}
|
|
}
|
|
|