mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
15 lines
241 B
Java
15 lines
241 B
Java
public class A {
|
|
void test(String[] <caret>value) {
|
|
String[] myValue = value;
|
|
}
|
|
|
|
void callTest() {
|
|
test(CONST);
|
|
}
|
|
|
|
void callTest2() {
|
|
test(CONST);
|
|
}
|
|
|
|
public static final String[] CONST = new String[] { "A", "B" };
|
|
} |