leo/tests/compiler/integers/u8/console_assert.leo

18 lines
230 B
Plaintext
Raw Normal View History

2021-05-10 21:11:31 +03:00
/*
namespace: Compile
expectation: Pass
inputs:
- u8.in: |
[main]
a: u8 = 2;
b: u8 = 2;
[registers]
r0: bool = true;
*/
function main(a: u8, b: u8) -> bool {
2020-08-17 05:14:26 +03:00
console.assert(a == b);
2021-05-10 21:11:31 +03:00
return a == b;
}