leo/tests/compiler/integers/i64/ne.leo

26 lines
364 B
Plaintext
Raw Normal View History

2021-05-10 20:19:19 +03:00
/*
namespace: Compile
expectation: Pass
inputs:
- i64_ne.in: |
[main]
a: i64 = 2;
b: i64 = 5;
c: bool = true;
[registers]
r0: bool = false;
- i64_e.in: |
[main]
a: i64 = 5;
b: i64 = 5;
c: bool = false;
[registers]
r0: bool = false;
*/
function main(a: i64, b: i64, c: bool) -> bool{
2021-07-01 23:40:29 +03:00
return (a != b) == c;
2021-05-10 20:19:19 +03:00
}