mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 11:40:50 +07:00
10 lines
197 B
Java
10 lines
197 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
class Test {
|
|
public static void test(@NotNull Object... objects) { }
|
|
|
|
public static void main(String[] args) {
|
|
Object o = null;
|
|
test(o);
|
|
}
|
|
} |