blob: cebd44505fe15cb6fef11c1a8e89e1a157e095a8 [file] [log] [blame]
class ArrayCopy {
void f(String s) {
String[] l = new String[]{"x"};
String[] y = new String[1];
System.arraycopy(l, 0, y, 0, l.length);
String <caret>c = y[0];
}
}