1
1
mirror of https://github.com/ProvableHQ/leo.git synced 2025-01-07 03:00:50 +03:00
leo/tests/compiler/integers/u64/le.leo

12 lines
163 B
Plaintext
Raw Normal View History

2021-05-10 21:11:31 +03:00
/*
namespace: Compile
expectation: Pass
input_file:
- inputs/eq.in
- inputs/le.in
2021-05-10 21:11:31 +03:00
*/
function main(a: u64, b: u64, c: bool) -> bool {
return a <= b == c;
}