mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-19 17:29:34 +07:00
12 lines
202 B
Java
12 lines
202 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
class Test {
|
|
static void someMethod(@NotNull Object... varargParameter) {
|
|
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
someMethod(null, null);
|
|
}
|
|
}
|