mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
15 lines
210 B
Plaintext
15 lines
210 B
Plaintext
public class A {
|
|
void test() {
|
|
String[] myValue = CONST;
|
|
}
|
|
|
|
void callTest() {
|
|
test();
|
|
}
|
|
|
|
void callTest2() {
|
|
test();
|
|
}
|
|
|
|
public static final String[] CONST = new String[] { "A", "B" };
|
|
} |