leo/tests/compiler/integers/u16/gt.leo

26 lines
360 B
Plaintext
Raw Normal View History

2021-05-10 21:11:31 +03:00
/*
namespace: Compile
expectation: Pass
inputs:
- u16_g.in: |
[main]
a: u16 = 3;
b: u16 = 2;
c: bool = true;
[registers]
r0: bool = true;
- u16_f.in: |
[main]
a: u16 = 1;
b: u16 = 2;
c: bool = false;
[registers]
r0: bool = true;
*/
2020-07-31 01:41:03 +03:00
function main(a: u16, b: u16, c: bool) {
2020-08-17 05:14:26 +03:00
console.assert(a > b == c);
2021-05-10 21:11:31 +03:00
}