New J2K: Fix existing test data

This commit is contained in:
Ilya Kirillov
2019-04-10 15:55:37 +03:00
parent ae3920d535
commit c7e08f9e5d
36 changed files with 620 additions and 622 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ public class Java8Class {
foo1((Integer i) -> {
helper();
if (i > 1) {
return "42";
return null;
}
return "43";
+1 -1
View File
@@ -7,7 +7,7 @@
class Java8Class {
fun foo0(r: Function0<String>) {}
fun foo1(r: Function1<Int, String>) {}
fun foo1(r: Function1<Int, String?>) {}
fun foo2(r: Function2<Int, Int, String>) {}
+1 -1
View File
@@ -2,7 +2,7 @@ package demo
internal class Test {
fun test(vararg args: Any?) {
var argsx = args
var args = args
args = arrayOf(1, 2, 3)
}
}