New J2K: Fix existing test data

This commit is contained in:
Ilya Kirillov
2019-02-13 12:18:08 +03:00
committed by Ilya Kirillov
parent 9c71d5ca25
commit ea2081c2f0
40 changed files with 518 additions and 14 deletions
@@ -5,7 +5,7 @@ internal class C(private val arg1: Int, private val arg2: Int, private val arg3:
}
constructor(arg1: Int, arg2: Int, other: C) : this(arg1, arg2, 0) {
println(foo(1) + foo(2) + other.foo(3) + staticFoo(4) + C.staticFoo(5))
println(foo(1) + foo(2) + other.foo(3) + staticFoo(4) + staticFoo(5))
}
companion object {
@@ -1,7 +1,7 @@
internal class C() {
constructor(p: Int) : this() {
println(staticField1 + C.staticField2)
println(staticField1 + staticField2)
}
companion object {