mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-22 20:49:52 +07:00
17 lines
309 B
Java
17 lines
309 B
Java
class Test {
|
|
|
|
void f(String strings) {
|
|
extract("a", "b", "c", "d");
|
|
}
|
|
|
|
private static void extract(final String from, final String to, final String... extensions) {
|
|
|
|
new Foo(<selection>extensions</selection>);
|
|
}
|
|
|
|
private static class Foo {
|
|
public Foo(String[] extensions) {
|
|
}
|
|
}
|
|
}
|