leo/tests/compiler/integers/u32/ne.leo

18 lines
242 B
Plaintext
Raw Normal View History

2021-05-10 21:11:31 +03:00
/*
namespace: Compile
expectation: Pass
inputs:
- ne.in: |
[main]
a: u32 = 10;
b: u32 = 20;
c: bool = true;
[registers]
r0: bool = true;
*/
function main(a: u32, b: u32, c: bool) -> bool {
return a != b == c;
}