mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 06:01:00 +07:00
GitOrigin-RevId: b9a76fc3cc4cad29a3babcb35fac27477fd68116
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>());
|
|
}
|
|
}
|
|
|