mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
moving tests
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
public class Varargs {
|
||||
public static String join(String separator, String... texts) {
|
||||
return "";
|
||||
}
|
||||
|
||||
public void foo() {
|
||||
String[] texts = new String[]{"i", "d", "e", "a"};
|
||||
String s = join("", texts);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user