mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 05:20:54 +07:00
15 lines
260 B
Java
15 lines
260 B
Java
// "Remove 'unchecked' suppression" "true-preview"
|
|
import java.util.ArrayList;
|
|
|
|
public class Test {
|
|
@SafeVarargs
|
|
static <T> void foo(T... t){
|
|
}
|
|
|
|
void foo() {
|
|
//noinspection un<caret>checked,blah-blah-toolid
|
|
foo(new ArrayList<String>());
|
|
}
|
|
}
|
|
|