leo/tests/compiler/integers/u8/ne.leo

18 lines
238 B
Plaintext
Raw Normal View History

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