mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 22:20:54 +07:00
9 lines
154 B
Java
9 lines
154 B
Java
// "Make final and annotate as '@SafeVarargs'" "true-preview"
|
|
public class Test {
|
|
@SafeVarargs
|
|
public final <T> void m<caret>ain(T... args) {
|
|
|
|
}
|
|
}
|
|
|