mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 04:20:56 +07:00
15 lines
251 B
Java
15 lines
251 B
Java
// "Remove 'unchecked' suppression" "true-preview"
|
|
import java.util.ArrayList;
|
|
|
|
class Test {
|
|
@SafeVarargs
|
|
private static <T> void foo(T... t){
|
|
}
|
|
|
|
public void foo() {
|
|
//noinspection unc<caret>hecked
|
|
foo(new ArrayList<String>());
|
|
}
|
|
}
|
|
|