blob: cb746af8481603c08667d9c2ca7f33766474887b [file] [log] [blame]
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);
}
}