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

14 lines
203 B
Plaintext

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