leo/tests/compiler/integers/i128/ne.leo

26 lines
370 B
Plaintext
Raw Normal View History

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