Add more "Safe Delete" tests for value parameters

This commit is contained in:
Alexey Sedunov
2014-01-24 14:50:42 +04:00
parent 5f69317f1e
commit 624ac55415
24 changed files with 221 additions and 0 deletions
@@ -0,0 +1,13 @@
package test;
class A {
void bar() {
TestPackage.foo(
"", 10, new Function1<Integer, Unit>() {
public Unit invoke(Integer n) {
System.out.println(n);
}
}
);
}
}