translator: add test for long

This commit is contained in:
Alexey Stepanov
2016-08-18 12:58:03 +03:00
parent fca2bd2378
commit bdf0a34829
2 changed files with 6 additions and 0 deletions
@@ -0,0 +1 @@
long_operations_1_Multiplication() == 29
@@ -0,0 +1,5 @@
fun long_operations_1_Multiplication():Int {
assert(546344378L * 54321678L == 29678343378826284L)
assert(4556656L*67879230 == 309302300654880L)
return 29
}