leo/tests/compiler/integers/i128/console_assert.leo

14 lines
175 B
Plaintext
Raw Normal View History

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