mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-06 01:06:54 +07:00
14 lines
175 B
Java
14 lines
175 B
Java
import foo.*;
|
|
|
|
abstract class Foo {
|
|
void foo(Object @NotNull ... arrayItems) {}
|
|
|
|
@Nullable Object get() { return null;}
|
|
|
|
{
|
|
foo(get());
|
|
foo(get(), get());
|
|
}
|
|
}
|
|
|