dataflow to/from containers support

This commit is contained in:
Alexey Kudravtsev
2013-10-22 12:33:55 +04:00
parent 999a2e8e52
commit 6bcad287da
50 changed files with 1303 additions and 301 deletions
@@ -0,0 +1,9 @@
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];
}
}