leo/tests/compiler/integers/i64/console_assert.leo

14 lines
170 B
Plaintext
Raw Normal View History

2021-05-10 20:19:19 +03:00
/*
namespace: Compile
expectation: Pass
inputs:
- i64.in: |
[main]
a: i64 = 1;
b: i64 = 1;
*/
2020-07-16 07:55:45 +03:00
function main(a: i64, b: i64) {
2020-08-17 05:14:26 +03:00
console.assert(a == b);
2021-05-10 20:19:19 +03:00
}