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,10 @@
public class VarArgs {
private void g() {
f<flown111>(<flown1111>1);
f<flown112>(<flown1121>2, <flown1122>3, <flown1123>4);
}
private void f(int... <flown11>ints) {
int <caret>p = <flown1>ints[0];
}
}