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

14 lines
204 B
Plaintext

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