leo/tests/compiler/integers/i128/xor.leo

12 lines
142 B
Plaintext
Raw Normal View History

2022-06-17 02:45:37 +03:00
/*
namespace: Compile
expectation: Pass
input_file: inputs/add.in
*/
@program
function main(a: i128, b: i128) -> i128 {
return a ^ b;
2022-06-17 02:45:37 +03:00
}