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