blob: 2e5e66867d6dec5dee39b7cfbcd1aacefd100bf0 [file] [log] [blame]
public class A {
void test() {
String[] myValue = CONST;
}
void callTest() {
test();
}
void callTest2() {
test();
}
public static final String[] CONST = new String[] { "A", "B" };
}