mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 11:50:57 +07:00
15 lines
155 B
Java
15 lines
155 B
Java
interface Test {
|
|
|
|
final class Inner {
|
|
|
|
void func() {
|
|
of("");
|
|
of();
|
|
of("", "");
|
|
}
|
|
|
|
}
|
|
|
|
static void of(String... lists) { }
|
|
|
|
} |