mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 11:20:55 +07:00
14 lines
217 B
Java
14 lines
217 B
Java
// "Remove 'unchecked' suppression" "true-preview"
|
|
import java.util.ArrayList;
|
|
|
|
class Test {
|
|
@SafeVarargs
|
|
private static <T> void foo(T... t){
|
|
}
|
|
|
|
public void foo() {
|
|
foo(new ArrayList<String>());
|
|
}
|
|
}
|
|
|