mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
10 lines
187 B
Java
10 lines
187 B
Java
import java.util.Set;
|
|
|
|
class Test {
|
|
|
|
public static void foo(String[] args, final Set<Test> singleton) {
|
|
singleton.forEach(Test::m);
|
|
}
|
|
|
|
public static void m(Test... others) {}
|
|
} |