leo/tests/compiler/integers/i64/or.leo

10 lines
143 B
Plaintext
Raw Normal View History

/*
namespace: Compile
2022-06-17 02:45:37 +03:00
expectation: Pass
input_file: inputs/add.in
*/
function main(a: i64, b: i64, c: i64) -> bool {
2022-06-17 02:45:37 +03:00
return a | b == c;
}