mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 05:18:06 +07:00
GitOrigin-RevId: 1f0944cffba9b286e2a152d83e9d12a1a9da02bc
15 lines
243 B
Java
15 lines
243 B
Java
public class A {
|
|
void test(String[] <caret>value) {
|
|
String[] myValue = value;
|
|
}
|
|
|
|
void callTest() {
|
|
test(CONST);
|
|
}
|
|
|
|
void callTest2() {
|
|
test(A.CONST);
|
|
}
|
|
|
|
public static final String[] CONST = new String[] { "A", "B" };
|
|
} |