mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
dataflow to/from containers support
This commit is contained in:
@@ -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];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user