TEST: convertion unit tests into run tests

This commit is contained in:
Vasily Levchenko
2016-12-27 13:02:00 +03:00
committed by vvlevchenko
parent 7fd4b4fe34
commit 3fe59cc46c
56 changed files with 188 additions and 411 deletions
@@ -2,4 +2,8 @@ fun local_variable(a: Int) : Int {
var b = 0
b = a + 11
return b
}
fun main(args: Array<String>) {
if (local_variable(3) != 14) throw Error()
}