blob: 4f19feba6479eb5a496c880730ecec71857c6665 [file] [log] [blame]
class Test {
String[] s = new String[2];
void foo() {
s[0] = "";
System.out.println(s[0]);
}
}