181: Misc: Update Move test data

This commit is contained in:
Alexey Sedunov
2018-03-01 15:22:50 +03:00
committed by Nikolay Krasko
parent 212d218bc6
commit ffc059a0a1
7 changed files with 43 additions and 0 deletions
@@ -0,0 +1,5 @@
package b;
public class X {
}
@@ -0,0 +1,5 @@
package a;
public class X {
}
@@ -0,0 +1,10 @@
package a;
public class X {
private A outer;
public X(A outer, String s) {
this.outer = outer;
System.out.println(s);
}
}
@@ -0,0 +1,12 @@
package a;
import kotlin.jvm.functions.Function0;
public class X {
private A outer;
public X(A outer, Function0<String> f) {
this.outer = outer;
System.out.println(f.invoke());
}
}