blob: 0c64ea445f01e40c8473bf1685897ccdb599b784 [file] [log] [blame]
import java.util.concurrent.atomic.AtomicReferenceArray;
class Test {
String[] s = new String[2];
void foo() {
s[0] = "";
System.out.println(s[0]);
}
}