translator: fix tests answers

This commit is contained in:
e5l
2016-07-20 11:04:31 +03:00
parent a8d2798e58
commit 3d08d37735
5 changed files with 8 additions and 4 deletions
@@ -1 +1 @@
class_init_section(523) == 12868
class_init_section_1(523) == 12868
@@ -1,2 +1,2 @@
do_while_test_1(5) == 6
do_while_test_1(57) == 68
do_while_test_1(57) == 58
@@ -1 +1 @@
Singleton.create(5) == 40
singletone_test(5) == 40
@@ -1 +1 @@
reassigment_1(5) == 7
reassigment_1(5) == 8
@@ -4,3 +4,7 @@ object Singleton {
}
}
fun signleton_test(i: Int): Int {
return Singleton.create(i)
}