leo/tests/compiler/integers/u128/ne.leo
2022-10-05 16:53:49 -07:00

14 lines
206 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file:
- inputs/eq.in
- inputs/ne.in
*/
program test.aleo {
transition main(a: u128, b: u128, c: bool) -> bool{
return (a != b) == c;
}
}